get_transactions
Retrieve transaction data from a Brex financial account to analyze spending patterns and track financial activity using the account ID.
Instructions
Get transactions for a Brex account
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accountId | Yes | ID of the Brex account | |
limit | No | Maximum number of transactions to return (default: 50) |
Input Schema (JSON Schema)
{
"properties": {
"accountId": {
"description": "ID of the Brex account",
"type": "string"
},
"limit": {
"description": "Maximum number of transactions to return (default: 50)",
"type": "number"
}
},
"required": [
"accountId"
],
"type": "object"
}