get_budget_programs
Retrieve and list budget programs from Brex financial platform, including active and inactive programs with pagination support for comprehensive financial oversight.
Instructions
List budget programs (read-only). Returns complete budget program objects. Example: {"limit":10,"budget_program_status":"ACTIVE"}
Input Schema
Name | Required | Description | Default |
---|---|---|---|
budget_program_status | No | ||
cursor | No | ||
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"budget_program_status": {
"enum": [
"ACTIVE",
"INACTIVE"
],
"type": "string"
},
"cursor": {
"type": "string"
},
"limit": {
"type": "number"
}
},
"type": "object"
}