PayPal MCP

create_invoice

Create a new invoice

Input Schema

NameRequiredDescriptionDefault
currency_codeYes
invoice_numberYes
itemsYes
recipient_emailYes
referenceYes

Input Schema (JSON Schema)

{ "properties": { "currency_code": { "type": "string" }, "invoice_number": { "type": "string" }, "items": { "items": { "properties": { "name": { "type": "string" }, "quantity": { "type": "string" }, "unit_amount": { "properties": { "currency_code": { "type": "string" }, "value": { "type": "string" } }, "type": "object" } }, "type": "object" }, "type": "array" }, "recipient_email": { "type": "string" }, "reference": { "type": "string" } }, "required": [ "invoice_number", "reference", "currency_code", "recipient_email", "items" ], "type": "object" }