Get VertoFX Beneficiary Details
Description:
The /integrations/vertofx/beneficiaries/{id}
endpoint retrieves detailed information about a specific beneficiary.
Method: GET
Path Parameter:
Parameter | Type | Description |
---|---|---|
id | string | The unique identifier of the beneficiary |
curl --request GET \
--url https://server26-dot-royalti-project.uc.r.appspot.com/integrations/vertofx/beneficiaries/{id} \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"id": 4754,
"accountNumber": "2092805598",
"bankName": "United Bank for Africa Plc",
"firstName": "John",
"lastName": "Doe",
"currency": "NGN",
"beneficiaryCountryCode": "NG"
}
}
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Beneficiary ID
Success
The response is of type object
.
curl --request GET \
--url https://server26-dot-royalti-project.uc.r.appspot.com/integrations/vertofx/beneficiaries/{id} \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"id": 4754,
"accountNumber": "2092805598",
"bankName": "United Bank for Africa Plc",
"firstName": "John",
"lastName": "Doe",
"currency": "NGN",
"beneficiaryCountryCode": "NG"
}
}