New Beneficiary

Create a new Beneficiary

POST /beneficiaries

Description

Add a beneficiary with basic details such as name, country, and phone number without linking them to a specific corridor, sender or payout method. This endpoint enables the creation of a beneficiary profile, setting daily and monthly limits, and facilitating future transactions.

Body

Name
Type
Description

...

...

...

...

...

...

{
    "first_name": "Ben",
    "last_name": "T",
    "country": "QAT",
    "phone_number": "...",
    "daily_limit": 100,
    "monthly_limit": 10000 
}

Response

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

Last updated