Add a Recipient
Read on how to add a receive user
This API allows you to add a Recipient for given Sender. You will need to provide recipient’s basic information via this API. The response contains a unique Recipient ID that you can store on your end.
The field available_payout_methods
shows the list of payout method that are available from the recipient while creating a transaction. For a recipient to be eligible for BANK_DEPOSIT
orCASH_PICKUP
or WALLET
or HOME_DELIVERY
, available_payout_methods
must contain the payout method.
BANK_DEPOSIT
is enabled by default for all receivers and they can receive the amount if their bank information is added.For a recipient to be eligible for
CASH_PICKUP
the fieldenable_cash_pickup
must be set totrue
while creating or updating the recipient. If theenable_cash_pickup
is set totrue
, additional information about the receiver which were optional may be required based on the receiver's country.If you have been approved for Mobile Wallet,
WALLET
is enabled for all the applicable receivers.If you have been approved for Home Delivery,
HOME_DELIVERY
is enabled for all the receivers.
POST /v2/senders/{{senderId}}/recipients
Parameter | Required | Type | Description |
---|---|---|---|
senderId | Yes, in URL | UUID | ID of the sender under which the recipient will be added |
first_name | Yes | String | First name of the recipient |
middle_name | No | String | Middle name of the recipient |
last_name | Yes | String | Last name of the recipient |
country | Yes | String | ISO code of the recipient's country |
address_line1 | Yes | String | Street address of the recipient |
address_line2 | No | String | Second line of the street address |
city | Yes | String | City of the recipient |
postal_code | Yes | String | Zip code of the recipient |
province | Yes | String | State or province of the recipient |
No | The email address of the recipient | ||
home_phone | No | String | Home phone number of the recipient |
mobile_phone | No | String | Mobile phone number of the recipient |
work_phone | No | String | Work phone number of the recipient |
date_of_birth | No | Date | Date of birth of the recipient (yyyy-mm-dd) |
occupation | No | String | Occupation of the recipient |
sender_relationship | Yes | String | Enumerated value: |
enable_cash_pickup | No | boolean | Set the flag to true for enabling |
Last updated