get_card_expense
Retrieve detailed information for a specific Brex card expense using its unique ID, including merchant details and transaction data.
Instructions
Get a single card expense by ID. Returns the complete card expense object. Example: {"expense_id":"expense_123","expand":["merchant"]}
Input Schema
Name | Required | Description | Default |
---|---|---|---|
expand | No | ||
expense_id | Yes | Card expense ID |
Input Schema (JSON Schema)
{
"properties": {
"expand": {
"items": {
"type": "string"
},
"type": "array"
},
"expense_id": {
"description": "Card expense ID",
"type": "string"
}
},
"required": [
"expense_id"
],
"type": "object"
}