Transactions
Retrieve a paginated list of transactions for a specific account.
Authorizations
api_keystringRequired
Path parameters
accountIdstringRequired
Unique identifier of the account
Query parameters
pageintegerOptional
Page number of the transactions list
pageSizeintegerOptional
Number of transactions per page
Responses
200
A list of transactions for the specified account
application/json
404
Account not found
get
/account/{accountId}/transactionsEndpoint to add funds to a specific account. This involves a payment transaction which, upon successful completion, updates the account balance.
Authorizations
api_keystringRequired
Path parameters
accountIdstringRequired
Account ID
Body
amountnumber · floatRequiredExample:
100Responses
200
Funds added successfully
application/json
400
Invalid input or account not found
post
/account/{accountId}/transactions/add-fundsEndpoint to record the usage of services against an account.
Authorizations
api_keystringRequired
Path parameters
accountIdstringRequired
Account ID
Body
detailsstringRequiredExample:
100 tokensamountnumber · floatRequiredExample:
15.75datestring · timestampRequiredExample:
2010-01-01 00.00:00metadataobjectOptional
Responses
200
Usage recorded successfully
application/json
400
Invalid input or account not found
post
/account/{accountId}/transactions/record-usageLast updated