- Overview
- Payments
- Payouts
- Reserved Account
Get Reserved Account By Reference
GET
https://devapi.collect.africa/reserved_account/ref/{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
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
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