get_cash_transactions
Retrieve cash transaction data from Brex accounts to monitor financial activity, track spending patterns, and analyze cash flow using pagination and filtering options.
Instructions
LIST: Cash transactions (requires cash scopes). Example: {"account_id":"cash_acc_123","limit":10}. Returns complete transaction objects.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_id | Yes | Cash account ID | |
cursor | No | Pagination cursor | |
expand | No | Fields to expand | |
limit | No | Items per page (1-100) | |
posted_at_start | No | ISO timestamp to start from |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"description": "Cash account ID",
"type": "string"
},
"cursor": {
"description": "Pagination cursor",
"type": "string"
},
"expand": {
"description": "Fields to expand",
"items": {
"type": "string"
},
"type": "array"
},
"limit": {
"description": "Items per page (1-100)",
"type": "number"
},
"posted_at_start": {
"description": "ISO timestamp to start from",
"type": "string"
}
},
"required": [
"account_id"
],
"type": "object"
}