Add Customer
The "Add Customer" endpoint is a vital component of our API, designed to facilitate the creation and storage of new customer records within the system.
The POST
{{baseUrl}}/customer
endpoint is designed to facilitate the creation and storage of new customer records within the system. This endpoint allows applications to efficiently add customer data, ensuring that new customer information is accurately recorded for subsequent use. It supports various use cases, including registering new users, onboarding clients, and integrating customer data from other systems.
Key Features:
HTTP Method:
POST
Endpoint URL: {{baseUrl}}
/customer
Authentication: Requires Bearer token to ensure secure access.
Request Payload: Accepts a JSON object containing detailed customer information, such as name, email, phone number, address, and identification details.
Note the customer KYC can be carried out by the user via link sent to the user email or you can send the information via API.
Create a new user
POST
/customer
Headers
Content-Type
application/json
Authorization
Bearer <token>
Body
Response
Last updated