Customers API Playground
Send real, HMAC-signed requests to the customers endpoints and inspect the live response.
POST/api/customers
cURL
- 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": "jane.doe@example.com",
- "first_name": "Jane",
- "last_name": "Doe",
- "phone_number": "+2348012345678",
- "country_code": "NGA",
- "customer_type": "individual",
- "reference": "ref-001"
- }'
Response
// Awaiting response...