Global Payout Batches
Create a global payout batch
Create a global payout batch. Supports USDT and USDC across their available networks (USDT on Ethereum, Arbitrum, Polygon, Solana, Tron; USDC on Ethereum, Base, Arbitrum, Polygon, Solana). Defaults to DRAFT unless confirm is true (PENDING_APPROVAL). Use Idempotency-Key to prevent duplicates.
post/v1/global-payout-batches
Headers
X-API-Keystring
API key
Idempotency-Keystring
Optional idempotency key (UUID) to prevent duplicate batch creation
Request body
Example request
{
"onBehalfOf": "cus_abc123",
"source": {
"currency": "USDT",
"paymentRail": "ETHEREUM"
},
"paymentReason": "PAYMENT_FOR_GOODS_AND_SERVICES",
"items": [
{
"amount": {
"currency": "USD",
"rawValue": "1000000"
},
"counterpartyId": "cp_abc123",
"beneficiaryType": "INDIVIDUAL",
"beneficiaryName": "Jane Doe",
"beneficiaryAddress": {
"addressLine1": "123 Main Street",
"addressLine2": "Apt 4B",
"city": "San Francisco",
"state": "CA",
"postalCode": "94102",
"country": "US",
"transliterated": {
"addressLine1": "123 Main Street",
"addressLine2": "Apt 4B",
"city": "Beijing",
"state": "Hebei"
}
},
"destination": {
"type": "EXTERNAL_WALLET",
"address": "0x1234567890abcdef1234567890abcdef12345678"
},
"clientReferenceId": "payroll_line_42",
"developerFeeFixed": 100,
"developerFeePercent": 0.015
}
]
}Response
Global payout batch created
Example response
{
"id": "pb_abc123",
"organizationId": "org_abc123",
"onBehalfOf": "cus_abc123",
"source": {
"currency": "USDT",
"paymentRail": "ETHEREUM"
},
"status": "DRAFT",
"paymentReason": "PAYMENT_FOR_GOODS_AND_SERVICES",
"items": [
{
"id": "pbi_abc123",
"amount": {
"currency": "USD",
"exponent": 2,
"value": "12345",
"displayValue": "123.45"
},
"counterpartyId": "cp_abc123",
"destination": {
"type": "EXTERNAL_WALLET",
"currency": "USDT",
"paymentRail": "ETHEREUM",
"accountId": "ewa_abc123",
"address": "0x1234567890abcdef1234567890abcdef12345678"
},
"transferId": "tfr_abc123",
"status": "PENDING",
"clientReferenceId": "payroll_line_42",
"developerFeeFixed": 100,
"developerFeePercent": 0.015
}
]
}Changes
No recorded changes to this endpoint across all 1 revision of this API.