v2

latestOpenAPI 3.0.0Commercial2026-07-2649110209.4 KB
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

objectstring required

Object type

has_moreboolean required

Whether more items exist beyond this page

Example response

{
  "object": "list",
  "data": [
    {
      "id": "cce_abc123",
      "transaction_id": "cct_abc123",
      "account_id": "cca_abc123",
      "amount": "1000"
    }
  ]
}