Create a beneficiary record to store recipient information for future payouts. After creating a beneficiary, add their payment method details using the payment methods endpoint.
Requires an Idempotency-Key header.
Request body
Beneficiary type: "individual" or "business".
Full name of the beneficiary (individual) or legal business name.
Beneficiary’s email address.
Beneficiary’s physical address.
Beneficiary’s country code (e.g. CHL, MEX, BRA).
A short label for this beneficiary. Defaults to customer_name if omitted.
curl -X POST 'https://api.yativo.com/api/v1/beneficiaries' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"recipient_type": "individual",
"customer_name": "Maria Gonzalez",
"customer_email": "maria.gonzalez@example.com",
"customer_address": "123 Main Street, Santiago",
"country": "CHL",
"customer_nickname": "Maria"
}'
{
"status": "success",
"data": {
"id": "7a8b9c0d-1e2f-3a4b-5c6d-7e8f9a0b1c2d",
"user_id": "usr-001",
"recipient_type": "individual",
"customer_name": "Maria Gonzalez",
"customer_email": "maria.gonzalez@example.com",
"customer_nickname": "Maria",
"country": "CHL",
"customer_address": "123 Main Street, Santiago",
"is_archived": false,
"created_at": "2026-04-02T10:00:00.000000Z",
"updated_at": "2026-04-02T10:00:00.000000Z"
}
}