Customer Credits - Accounts (Experimental)
List account entries
List the credit and debit history for an account with cursor pagination.
get/v1/customer-credits/accounts/{id}/entries
Path parameters
idstring required
Query parameters
limitnumber
Maximum number of entries to return
starting_afterstring
Cursor for forward pagination — entry ID to start after
ending_beforestring
Cursor for backward pagination — entry ID to end before
Response
Paginated list of entries
Example response
{
"object": "list",
"data": [
{
"id": "cce_abc123",
"transaction_id": "cct_abc123",
"account_id": "cca_abc123",
"amount": "1000"
}
]
}