Get Beneficiary
Get details of a Beneficiary.
You do this by making a GET request to transfers endpoint from your server.
-H "x-api-key: your_secret_key".
{{host}}/v1/transfer/beneficiaries/:beneficiaryId
Path Parameters
Field | Data type | Description |
---|---|---|
beneficiaryId | string. | The Beneficiary ID you want to fetch. |
If the API call is successful, Kyshi returns the following response:
{
"data": {
"id": "8495ec4e-ce21-405f-b0cf-982702881f4d",
"accountName": "FEMI ZACK",
"accountNumber": "1111111103",
"bankName": "Keystone Bank",
"bankCode": "000002",
"bvn": "22222222224",
"description": "TEST",
"isActive": true,
"createdAt": "2024-07-08T14:25:58.115Z",
"updatedAt": "2024-07-08T14:25:58.115Z",
"version": 1
},
"status": true,
"message": "Success",
"code": 200
}
Updated 5 months ago