get_all_accounts
Retrieve all Brex accounts with pagination support, allowing filtering by status and control over the number of items returned per page.
Instructions
Get all Brex accounts with pagination support
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_items | No | Maximum total number of items to retrieve across all pages | |
page_size | No | Number of items per page (default: 50, max: 100) | |
status | No | Filter accounts by status |
Input Schema (JSON Schema)
{
"properties": {
"max_items": {
"description": "Maximum total number of items to retrieve across all pages",
"type": "number"
},
"page_size": {
"description": "Number of items per page (default: 50, max: 100)",
"type": "number"
},
"status": {
"description": "Filter accounts by status",
"enum": [
"ACTIVE",
"INACTIVE",
"CLOSED"
],
"type": "string"
}
},
"type": "object"
}