Get USDC Transaction Count
GET/users/:id/transactions/usdc/count
Gets the count of the user's $USDC transaction history within the App
Request
Path Parameters
id stringrequired
A User ID
Query Parameters
type string[]
Possible values: [purchase_content, transfer, internal_transfer, prepare_withdrawal, recover_withdrawal, withdrawal, purchase_stripe]
Filters the type of transactions to show
include_system_transactions boolean
Include intermediate system transactions in the results
method string
Possible values: [send, receive]
Filters the method (sent/received) of transactions to show
Header Parameters
Encoded-Data-Message string
The data that was signed by the user for signature recovery
Encoded-Data-Signature string
The signature of data, used for signature recovery
Responses
- 200
Success
- application/json
- Schema
- Example (from schema)
Schema
latest_chain_block integerrequired
latest_indexed_block integerrequired
latest_chain_slot_plays integerrequired
latest_indexed_slot_plays integerrequired
signature stringrequired
timestamp stringrequired
version
object
required
service stringrequired
version stringrequired
data integer
{
"latest_chain_block": 0,
"latest_indexed_block": 0,
"latest_chain_slot_plays": 0,
"latest_indexed_slot_plays": 0,
"signature": "string",
"timestamp": "string",
"version": {
"service": "string",
"version": "string"
},
"data": 0
}
Loading...