Beneficiary
You can manage beneficiaries with the set of API provided below. You can make a transfer request only against an added beneficiary.
Create Beneficiary
POST
https://public_key:secret_key@api.ippopay.com/v1/payout/beneficiary/create
Use this api to create a beneficiary on your account to use it for initiating transfer. You can get your keys from the payout api dashboard.
Request Body
acc_number
string
Account number of the beneficiary
ifsc
string
IFSC code for the account
name
string
Account holder name
beneficiary_ref
string
Unique Reference id for the beneficiary. Accepts only alpha numeric.
Beneficiary List
GET
https://public_key:secret_key@api.ippopay.com/v1/payout/beneficiary/list
Use this api to fetch list of beneficiaries on your account. You can get your keys from the payout api dashboard.
Query Parameters
limit
number
Limits the number of records to fetch
page
number
The page number to fetch the list
Get Beneficiary Details
GET
https://public_key:secret_key@api.ippopay.com/v1/payout/beneficiary/getdetails/{beneficiary_ref}
Use this api to get a particular beneficiary on your account. You can get your keys from the payout api dashboard.
Path Parameters
beneficiary_ref
string
Reference id of the beneficiary
Last updated