get_budgets
Retrieve and list budget information from the Brex financial platform, including active, archived, or draft budgets with pagination support.
Instructions
List budgets (read-only). Example: {"limit":10}
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cursor | No | ||
limit | No | ||
parent_budget_id | No | ||
spend_budget_status | No |
Input Schema (JSON Schema)
{
"properties": {
"cursor": {
"type": "string"
},
"limit": {
"type": "number"
},
"parent_budget_id": {
"type": "string"
},
"spend_budget_status": {
"enum": [
"ACTIVE",
"ARCHIVED",
"DRAFT"
],
"type": "string"
}
},
"type": "object"
}