Virtual Accounts API Playground
Send real, HMAC-signed requests to the virtual accounts endpoints and inspect the live response.
POST/api/customers
- curl --location --request POST 'https://api.bitnob.com/api/customers' \
- --header 'Content-Type: application/json' \
- --header 'X-Auth-Client: {{clientId}}' \
- --header 'X-Auth-Timestamp: {{timestamp}}' \
- --header 'X-Auth-Nonce: {{nonce}}' \
- --header 'X-Auth-Signature: {{signature}}' \
- --data '{
- "email": "ada@example.com",
- "customer_type": "individual",
- "first_name": "Ada",
- "last_name": "Okafor",
- "date_of_birth": "1994-03-21",
- "phone_number": "8012345678",
- "dial_code": "+234",
- "id_type": "bvn",
- "id_number": "12345678901",
- "country": "NGA"
- }'
Response
// Awaiting response...