GuidesAPI Reference
Changelog
GuidesAPI Reference
Changelog
  1. Transfer Recipient
  • Overview
  • Payments
    • Overview
    • Get Payment
      GET
    • Get Payments
      GET
    • Create PayLink
      POST
    • Charge
      POST
    • Payment Initialize
      POST
    • Initialize Crypto Payment
      POST
    • Initialize Card Payment
      POST
  • Payouts
    • Overview
    • Transfer Recipient
      • Create Transfer Recipient
        POST
      • Get Transfer Recipients
        GET
      • Get Transfer Recipient
        GET
    • Transfers
      • Create Transfer
      • Get Transfers
      • Get Transfer
      • Get Transfer By Reference
    • Banks
      GET
    • Account Resolve
      GET
  • Reserved Account
    • Overview
    • Get Reserved Accounts
      GET
    • Get Reserved Account By Reference
      GET
    • Get Reserved Account
      GET
    • Update Reserved Account
      PUT
    • Delete Reserved Account
      DELETE
    • Create Reserved Account
      POST
  1. Transfer Recipient

Get Transfer Recipient

GET
https://devapi.collect.africa/transfers/recipients/{id}
Last modified:2025-04-19 09:05:16
Fetch details about a transfer recipient

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
id
string 
required
transfer recipient id

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
200
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
Previous
Get Transfer Recipients
Next
Create Transfer
Built with