PayPal MCP

create_payout

Create a batch payout

Input Schema

NameRequiredDescriptionDefault
itemsYes
sender_batch_headerYes

Input Schema (JSON Schema)

{ "properties": { "items": { "items": { "properties": { "amount": { "properties": { "currency": { "type": "string" }, "value": { "type": "string" } }, "required": [ "value", "currency" ], "type": "object" }, "note": { "type": "string" }, "receiver": { "type": "string" }, "recipient_type": { "type": "string" }, "sender_item_id": { "type": "string" } }, "required": [ "recipient_type", "amount", "receiver" ], "type": "object" }, "type": "array" }, "sender_batch_header": { "properties": { "email_subject": { "type": "string" }, "recipient_type": { "type": "string" }, "sender_batch_id": { "type": "string" } }, "required": [ "sender_batch_id" ], "type": "object" } }, "required": [ "sender_batch_header", "items" ], "type": "object" }