GuidesAPI Reference
Changelog
GuidesAPI Reference
Changelog
  1. Reserved Account
  • 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
      • Get Transfer Recipients
      • Get Transfer Recipient
    • 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. Reserved Account

Get Reserved Account By Reference

GET
https://devapi.collect.africa/reserved_account/ref/{id}
Last modified:2025-04-19 09:05:16
Fetch reserved account details by reference

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
id
string 
required
Default:
ca-va-78

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/reserved_account/ref/'

Responses

🟢200OK
application/json
200
Body
message
string 
optional
Example:
Reserved account details retrieved successfully
data
object 
optional
id
integer 
optional
Default:
0
Example:
44
status
string 
optional
Example:
active
account_name
string 
optional
Example:
John Doe
account_number
string 
optional
Example:
7995441901
email
string 
optional
Example:
test@gmail.com
bvn
string 
optional
Example:
22200000000
phone_number
string 
optional
Example:
+2348000000000
reference
string 
optional
Example:
ca-va-78
bank_code
string 
optional
Example:
035
bank_name
string 
optional
Example:
Alat
currency
string 
optional
Example:
NGN
country
string 
optional
Example:
NG
metadata
optional
created_at
string 
optional
Example:
2022-01-12T14:39:09.519Z
updated_at
string 
optional
Example:
2022-01-12T14:39:09.519Z
Example
{
    "message": "Reserved account details retrieved successfully",
    "data": {
        "id": 44,
        "status": "active",
        "account_name": "John Doe",
        "account_number": "7995441901",
        "email": "test@gmail.com",
        "bvn": "22200000000",
        "phone_number": "+2348000000000",
        "reference": "ca-va-78",
        "bank_code": "035",
        "bank_name": "Alat",
        "currency": "NGN",
        "country": "NG",
        "metadata": null,
        "created_at": "2022-01-12T14:39:09.519Z",
        "updated_at": "2022-01-12T14:39:09.519Z"
    }
}
🟠400Bad Request
Previous
Get Reserved Accounts
Next
Get Reserved Account
Built with