Path Parameters
The account’s external ID (starts with acc_)
Request Body
beneficiary_type
string
default:"individual"
Type of beneficiary: individual or business
Title (e.g., Mr, Ms, Dr) - max 20 characters
First name (max 100 characters)
Middle name (max 100 characters)
Last name (max 100 characters)
Display name for the beneficiary (max 255 characters)
Company name (required for business beneficiaries, max 255 characters)
Email address (max 255 characters)
Phone number with country code (max 50 characters)
Beneficiary address
City name (max 100 characters)
State/Province/Region (max 100 characters)
Postal code (max 20 characters)
ISO 3166-1 alpha-2 country code
Tax identification number (max 50 characters)
Payout country code (ISO 3166-1 alpha-2)
Internal notes or comments
Response
Beneficiary identifier (starts with ben_)
Always returns "beneficiary"
Parent account external ID
Beneficiary type: individual or business
Beneficiary address
ISO 3166-1 alpha-2 country code
Tax identification number
Internal notes or comments
Beneficiary status: active, disabled, or inactive
Whether beneficiary has been verified
Array of payout destination objects
ISO 8601 timestamp when created
ISO 8601 timestamp when last updated
Response Example
{
"id": "ben_1234567890abcdef",
"object": "beneficiary",
"account_id": "acc_1234567890abcdef",
"beneficiary_type": "individual",
"title": null,
"first_name": "John",
"middle_name": null,
"last_name": "Doe",
"display_name": "John Doe",
"company_name": null,
"email": "[email protected]",
"phone": "+1234567890",
"address": {
"address_line": "123 Main St",
"city": "New York",
"region": "NY",
"postal_code": "10001",
"country": "US"
},
"tax_id": "123-45-6789",
"country_code": "US",
"note": null,
"status": "active",
"verified": false,
"payout_destinations": [],
"created": "2024-01-15T10:00:00Z",
"updated": "2024-01-15T10:00:00Z"
}