get_expense
Retrieve detailed expense information from Brex financial platform by providing a specific expense ID to access complete expense data and related merchant details.
Instructions
Get a single expense by ID. Returns the complete expense object. Example: {"expense_id":"expense_123","expand":["merchant"]}
Input Schema
Name | Required | Description | Default |
---|---|---|---|
expand | No | ||
expense_id | Yes | Expense ID |
Input Schema (JSON Schema)
{
"properties": {
"expand": {
"items": {
"type": "string"
},
"type": "array"
},
"expense_id": {
"description": "Expense ID",
"type": "string"
}
},
"required": [
"expense_id"
],
"type": "object"
}