get_cash_account_statements
Retrieve detailed cash account statements using account ID to access transaction history and financial records for monitoring and analysis.
Instructions
Get cash account statements by account ID. Returns complete statement objects. Example: {"account_id":"cash_acc_123","limit":5}
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_id | Yes | Cash account ID | |
cursor | No | Pagination cursor | |
limit | No | Items per page (default 50, max 100) |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"description": "Cash account ID",
"type": "string"
},
"cursor": {
"description": "Pagination cursor",
"type": "string"
},
"limit": {
"description": "Items per page (default 50, max 100)",
"type": "number"
}
},
"required": [
"account_id"
],
"type": "object"
}