Update Details

Update a Beneficiary

PUT /beneficiaries/{beneficiary_id}

Description

This endpoint is used to update the details of an existing beneficiary. You can modify specific attributes such as the age of the user, while maintaining their unique identifier (beneficiary_id). The updated information will be reflected in the response to confirm successful changes.

Body

Name
Type
Description

beneficiary_id

string

Unique beneficiary id provided by the tenant

country

string

Country of the user

Response

    "beneficiary_uid": "eb872fce-b5d8-4225-b407-fcdbe686db02",
    "first_name": "Ben",
    "middle_name": "",
    "last_name": "Ten",
    "country": "QAT",
    "phone_number": "...",
    "daily_limit": 100,
    "monthly_limit": 10000,
    "kyc":..., 
}

Last updated