Wallets
List wallet transactions
get/api/wallets/{id}/transactions
Path parameters
idstring required
Wallet ID
Query parameters
status'PENDING' | 'SETTLED' | 'FAILED'
transactionStatus'PURCHASED' | 'GRANTED' | 'VOIDED' | 'INVOICED'
transactionType'INBOUND' | 'OUTBOUND'
pagenumber
limitnumber
Response
Paginated list of transactions
Example response
{
"data": [
{
"id": "clx1234567890",
"walletId": "clxwallet123",
"transactionType": "INBOUND",
"status": "SETTLED",
"transactionStatus": "PURCHASED",
"creditAmount": "50.0000",
"amount": "50.0000"
}
],
"meta": {
"total": 150,
"page": 1,
"limit": 20,
"totalPages": 8
}
}