Skip to main content
Returns full details for a specific beneficiary.
GET /v1/beneficiaries/{id}

Path parameters

id
string
required
The ID of the beneficiary to retrieve.
curl -X GET 'https://api.yativo.com/api/v1/beneficiaries/7a8b9c0d-1e2f-3a4b-5c6d-7e8f9a0b1c2d' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "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"
  }
}