v1
latestOpenAPI 3.0.02026-07-26280204.9 KBCreate Payout Sender
Create a payout sender to be used as the payer for payouts. The payout sender can be an individual or a company, serving as the source of funds for payouts.
Required fields: sender_name, type (must be "individual" or "company"). All other fields are optional.
Conditional requirements:
- If type is "individual", provide an individual object with the required individual details.
- If type is "company", provide a company object with the required company details.
Sender Party explained
-
As a merchant paying an invoice from a supplier through a bank transfer, the sender party is the merchant.
-
For a marketplace platform collecting funds from buyers and sending them to a third party, the source of funds is the buyer.
-
For a remittance company providing a platform for buyers to remit funds cross-border, the sender party is the buyer.
-
For a company making payroll payments to employees, the sender party is the company.
Depending on the market, sender party parameters may change. It is advisable to create a sender party for yourself if funds need to be sent to suppliers.
Request body
Example request
{
"sender_name": "John Doe Enterprises",
"type": "individual",
"description": "Primary sender account",
"metadata": {
"internal_ref": "ref_001"
},
"email": "john@example.com",
"organization_reference_id": "org_ref_123",
"address_line1": "123 Main Street",
"address_line2": "Suite 100",
"address_city": "San Francisco",
"address_state": "CA",
"address_country": "US",
"address_zip_code": "94105",
"phone_number": "1234567890",
"phone_country_code": "+1",
"phone_number_e164": "+11234567890",
"individual": {
"first_name": "John",
"last_name": "Doe",
"dob": "1990-01-15",
"nationality": "US",
"country_of_residence": "US",
"identification_type": "PASSPORT",
"identification_custom_type": "",
"identification_value": "AB1234567"
},
"company": null
}Response
Created