upload_receipt
Upload receipt images to automatically match them with corresponding expense records in the Brex financial platform for accurate expense tracking.
Instructions
Upload a receipt image to match with expenses
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content_type | Yes | MIME type of the receipt (e.g., 'image/jpeg') | |
receipt_data | Yes | Base64-encoded image data | |
receipt_name | Yes | Name of the receipt file (e.g., 'receipt.jpg') |
Input Schema (JSON Schema)
{
"properties": {
"content_type": {
"description": "MIME type of the receipt (e.g., 'image/jpeg')",
"type": "string"
},
"receipt_data": {
"description": "Base64-encoded image data",
"type": "string"
},
"receipt_name": {
"description": "Name of the receipt file (e.g., 'receipt.jpg')",
"type": "string"
}
},
"required": [
"receipt_data",
"receipt_name",
"content_type"
],
"type": "object"
}