get_budget
Retrieve complete budget details from the Brex financial platform by specifying a budget ID to access financial planning information.
Instructions
Get a budget by ID (read-only). Returns the complete budget object. Example: {"budget_id":"budget_123"}
Input Schema
Name | Required | Description | Default |
---|---|---|---|
budget_id | Yes | The ID of the budget to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"budget_id": {
"description": "The ID of the budget to retrieve",
"type": "string"
}
},
"required": [
"budget_id"
],
"type": "object"
}