- Overview
- Payments
- Payouts
- Reserved Account
Get Transfer Recipient
GET
https://devapi.collect.africa/transfers/recipients/{id}
Last modified:2025-04-19 09:05:16
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
id
string
required
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://devapi.collect.africa/transfers/recipients/'
Responses
🟢200OK
application/json
Body
message
string
optional
Example:
Fetched transfer recipient successful
data
object
optional
id
integer
optional
Default:
0
Example:
1
name
string
optional
Example:
Wale Test
account_name
string
optional
Example:
MARTINS ADEWALE
account_number
string
optional
Example:
0227162818
short_code
string
optional
Example:
TRP_rt8sm0j1je
bank_name
string
optional
Example:
Guaranty Trust Bank
bank_code
string
optional
Example:
058
currency
string
optional
Example:
NGN
country
string
optional
Example:
NG
created_at
string
optional
Example:
2021-05-22T14:01:07.638Z
updated_at
string
optional
Example:
2021-05-22T14:01:07.638Z
Example
{
"message": "Fetched transfer recipient successful",
"data": {
"id": 1,
"name": "Wale Test",
"account_name": "MARTINS ADEWALE",
"account_number": "0227162818",
"short_code": "TRP_rt8sm0j1je",
"bank_name": "Guaranty Trust Bank",
"bank_code": "058",
"currency": "NGN",
"country": "NG",
"created_at": "2021-05-22T14:01:07.638Z",
"updated_at": "2021-05-22T14:01:07.638Z"
}
}
🟠400Bad Request