Path Parameters
The account’s external ID (starts with acc_)
The beneficiary’s external ID (starts with ben_)
Request Body
Payout country code (ISO 3166-1 alpha-2)
Destination type: bank_account, wallet, or card
Currency for payouts (ISO 4217 code)
Custom label for this destination
Blockchain network (required for crypto destinations, e.g., ethereum, bitcoin)
Bank Account Fields
Account type: checking or savings
SWIFT/BIC code (max 11 characters)
Crypto Wallet Fields
Blockchain wallet address
Set as default destination for this beneficiary
Response
Payout destination identifier (starts with dest_)
Always returns "payout_destination"
Parent beneficiary external ID
Payout method (e.g., ach, wire, spei)
Blockchain network (for crypto only)
Destination status: active, disabled, or inactive
Last 4 digits of account number (masked for security)
Last 4 digits of CLABE (Mexico SPEI)
Whether this is the default destination
ISO 8601 timestamp when created
ISO 8601 timestamp when last updated
Response Example
{
"id": "dest_1234567890abcdef",
"object": "payout_destination",
"beneficiary_id": "ben_1234567890abcdef",
"country": "US",
"payout_method": "ach",
"type": "bank_account",
"label": null,
"currency": "USD",
"network": null,
"status": "active",
"account_number_last4": "7890",
"routing_number": "021000021",
"account_type": "checking",
"is_default": true,
"created": "2024-01-15T10:00:00Z",
"updated": "2024-01-15T10:00:00Z"
}