match_receipt
Generate a pre-signed URL to upload a receipt for automatic matching with existing expenses in the Brex financial platform.
Instructions
Create a pre-signed URL for uploading a receipt that will be automatically matched with existing expenses
Input Schema
Name | Required | Description | Default |
---|---|---|---|
notify_email | No | Email address to notify after matching (optional) | |
receipt_name | Yes | Name of the receipt file (e.g., 'receipt.jpg') | |
receipt_type | No | Type of the receipt (optional) |
Input Schema (JSON Schema)
{
"properties": {
"notify_email": {
"description": "Email address to notify after matching (optional)",
"type": "string"
},
"receipt_name": {
"description": "Name of the receipt file (e.g., 'receipt.jpg')",
"type": "string"
},
"receipt_type": {
"description": "Type of the receipt (optional)",
"type": "string"
}
},
"required": [
"receipt_name"
],
"type": "object"
}