List Beneficiary with Currency
List Beneficiary with Currency
List Beneficiary with Currency to filter it.
POST METHOD
{{baseUrl}}api/v2/beneficiary/currency
{
"start":1,
"limit":10,
"cur":"NGN",
}
Field | Required | Data Type | Description |
---|---|---|---|
start | true | Integer | Record row number in database (Descending) |
limit | true | Integer | Count of record to get |
cur | true | String | Length: 3, Currency ISO code i.e USD |
Response
{
"status": true,
"content": {
"data": [
{
"id": 6,
"beneficiaryType": 1,
"cur": "NGN",
"beneficiaryEmail": "",
"bankCode": "058",
"bankName": "GTBank",
"bankAddress": "",
"accountName": "John Doe",
"accountNo": "0030159710",
"accountType": "1",
"swift": "",
"country": "NG",
"state": "Oyo",
"address": "address",
"zipcode": "23402",
"bankSortCode": "",
"bankRoutingNo": "",
"stateId": "NIG32",
"city": "IBADAN",
"cityId": "25181",
"bankCodeType": "",
"mobile": "08080635172",
"IDType": "",
"IDNumber": "",
"cpf": "",
"created_at": "2022-08-22T16:08:40.000000Z",
"updated_at": "2022-08-22T16:08:40.000000Z",
"correspondentBankName": null,
"correspondentBankCode": null,
"correspondentAccountNumber": null,
"correspondentRoutine": null
}
]
}
}
Updated over 2 years ago