get_card_transactions
Retrieve and list primary card transactions with filtering options for user IDs, date ranges, and field expansion to access detailed financial data.
Instructions
LIST: Primary card transactions. Returns complete transaction objects. Example: {"limit":10,"posted_at_start":"2025-08-01T00:00:00Z","expand":["merchant"]}
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cursor | No | Pagination cursor | |
expand | No | Fields to expand | |
limit | No | Items per page (default 50) | |
posted_at_start | No | ISO timestamp to start from | |
user_ids | No | Optional filter by user IDs |
Input Schema (JSON Schema)
{
"properties": {
"cursor": {
"description": "Pagination cursor",
"type": "string"
},
"expand": {
"description": "Fields to expand",
"items": {
"type": "string"
},
"type": "array"
},
"limit": {
"description": "Items per page (default 50)",
"type": "number"
},
"posted_at_start": {
"description": "ISO timestamp to start from",
"type": "string"
},
"user_ids": {
"description": "Optional filter by user IDs",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}