Card Issuer Program
Customer Card Transactions
List card spending transactions for a specific customer
GET
Documentation Index
Fetch the complete documentation index at: https://docs.yativo.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer token:
Bearer YOUR_ACCESS_TOKENCustomer identifier — accepts
yativo_card_id, MongoDB _id, or external_customer_id.Page number. Defaults to
1.Results per page. Defaults to
20, max 100.Filter by transaction status. One of:
authorized, settled, declined, reversed, partially_reversed, failed, expired.Response fields
The response includes a top-levelcurrency field showing the customer’s card currency, followed by a paginated transactions array.
| Field | Description |
|---|---|
customer_id | The identifier passed in the path |
currency | The customer’s card currency (USD, EUR, GBP) |
transactions[].transaction_id | Unique identifier for this transaction |
transactions[].type | Transaction kind — typically purchase, refund, or withdrawal |
transactions[].amount | Transaction amount |
transactions[].currency | Transaction currency (may differ from card currency for foreign transactions) |
transactions[].status | Current status (see below) |
transactions[].merchant | Merchant name |
transactions[].merchant_category | Merchant category code (MCC) |
transactions[].merchant_city | Merchant city |
transactions[].merchant_country | Two-letter ISO country code |
transactions[].authorized_at | When the transaction was authorized |
transactions[].settled_at | When the transaction settled (null if still pending) |
transactions[].created_at | When the transaction record was first created |
Transaction statuses
| Status | Meaning |
|---|---|
authorized | Approved at point of sale; funds are held pending settlement |
settled | Transaction has settled and funds have been debited |
declined | Transaction was declined |
reversed | Transaction was fully reversed |
partially_reversed | Transaction was partially reversed |
failed | Transaction failed after authorization |
expired | Authorization expired before settlement |
To view transactions across all customers at once, use List Card Transactions. Real-time transaction events are also delivered via webhooks.

