send_invoice
Send invoices to customers through the Visa Acceptance platform by providing the required invoice ID to process billing communications.
Instructions
This tool will send an invoice to the customer from Visa Acceptance.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
invoice_id | Yes | Invoice ID (required) |
Input Schema (JSON Schema)
{
"properties": {
"invoice_id": {
"description": "Invoice ID (required)",
"type": "string"
}
},
"required": [
"invoice_id"
],
"type": "object"
}