v1

latestOpenAPI 3.0.1MIT2026-07-261190449.2 KB
Transactions

List of Transactions

Returns a list of transactions. You can use the limit, page, sortBy, sortDirection parameters to filter and sort the results. You can also use filters like the partnerSubmissionStatus to e.g. only get transactions that you as a partner have not synced yet.

get/transactions

Query parameters

organizationIdstring uuid required

The ID of the organization to get the transactions for.

status'DECLINED' | 'PENDING' | 'REVERSED' | 'CONFIRMED' | 'BOOKED'

The status of the transactions to filter by.

type'PURCHASE' | 'CASH_WITHDRAWAL' | 'REFUND' | 'CHARGEBACK' | 'RECHARGE' | 'STATUS_INQUIRY'

The type of the transactions to filter by.

partnerSubmissionStatus'NOT_SYNCED' | 'SYNCED' | 'TEMP_LOCKED' | 'LOCKED'

The partner submission status of the transactions to filter by.

cardAccountIdstring uuid

The ID of the card account to get the transactions for.

cardholderIdstring uuid

The ID of the cardholder to get the transactions for.

cardIdstring uuid

The ID of the card to get the transactions for.

fromDatestring date-time
Example:2024-07-19T15:00:00.000000Z

The from date to filter by as zero-offset UTC time. The date boundary is inclusive. Meaning we compare with >=.

toDatestring date-time
Example:2024-07-19T15:00:00.000000Z

The to date to filter by as zero-offset UTC time. The date boundary is inclusive. Meaning we compare with <=.

byDateField'confirmedAt' | 'createdAt' | 'bookedAt' | 'updatedAt' nullable

The date field to filter by if fromDate and toDate are present.

limitinteger

The maximum number of items to return per page. The default value if not provided is 100, the maximum allowed value is 1000.

pageinteger

The page number to return, starting with 0, this counts up to the total number of pages. The total number of pages is determined by the total number of records divided by the limit.

sortBy'organizationId' | 'status' | 'type' | 'cardholderId' | 'cardId' | 'merchantId' | 'confirmedAt' | 'createdAt'

The field to sort by.

sortDirection'ASC' | 'DESC'

The direction to sort by.

Response

Ok

hasNextPageboolean

Indicates whether there is a next page available.