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
Name
Value
Content-Type
application/json
Authorization
Bearer <token>
Body
{
"customer_name": "Emmanuel A Towoju",
"customer_email": "tbash7676@gmail.com",
"customer_phone": "+2349039395114",
"customer_country": "USA",
"customer_type": "individual", // or business, defaults to individual when not passed
"send_kyc_mail": true // default to true. email with URL to complete kyc will be sent to custome_email
}
import requests
import json
url = "{{baseUrl}}/customer"
payload = json.dumps({
"customer_name": "Emmanuel A Towoju",
"customer_email": "tbash7676@gmail.com",
"customer_phone": "+2349039395114",
"customer_country": "USA",
"customer_type": "individual", // or business, defaults to individual when not passed
"send_kyc_mail": true // default to true. email with URL to complete kyc will be sent to custome_email
})
headers = {
'Content-Type': 'application/json',
'Authorization': 'Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
require "uri"
require "json"
require "net/http"
url = URI("{{baseUrl}}/customer")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Post.new(url)
request["Content-Type"] = "application/json"
request["Authorization"] = "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9"
request.body = JSON.dump({
"customer_name": "Emmanuel A Towoju",
"customer_email": "tbash7676@gmail.com",
"customer_phone": "+2349039395114",
"customer_country": "USA",
"customer_type": "individual", // or business, defaults to individual when not passed
"send_kyc_mail": true // default to true. email with URL to complete kyc will be sent to custome_email
})
response = http.request(request)
puts response.read_body
// Some codconst axios = require('axios');
let data = JSON.stringify({
"customer_name": "Emmanuel A Towoju",
"customer_email": "tbash7676@gmail.com",
"customer_phone": "+2349039395114",
"customer_country": "USA",
"customer_type": "individual", // or business, defaults to individual when not passed
"send_kyc_mail": true // default to true. email with URL to complete kyc will be sent to custome_email
});
let config = {
method: 'post',
maxBodyLength: Infinity,
url: '{{baseUrl}}/customer',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9'
},
data : data
};
axios.request(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.lo<?php
<?php
$client = new Client();
$headers = [
'Content-Type' => 'application/json',
'Authorization' => 'Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9'
];
$body = '{
"customer_name": "Emmanuel A Towoju",
"customer_email": "tbash7676@gmail.com",
"customer_phone": "+2349039395114",
"customer_country": "USA",
"customer_type": "individual", // or business, defaults to individual when not passed
"send_kyc_mail": true // default to true. email with URL to complete kyc will be sent to custome_email
}';
$request = new Request('POST', '{{baseUrl}}/customer', $headers, $body);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
const url = '{{baseUrl}}/customer';
const payload = JSON.stringify({
"customer_name": "Emmanuel A Towoju",
"customer_email": "tbash7676@gmail.com",
"customer_phone": "+2349039395114",
"customer_country": "USA",
"customer_type": "individual", // or business, defaults to individual when not passed
"send_kyc_mail": true // default to true. email with URL to complete kyc will be sent to custome_email
});
const options = {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9'
},
body: payload
};
fetch(url, options)
.then(response => {
if (!response.ok) {
throw new Error('Network response was not ok ' + response.statusText);
}
return response.json();
})
.then(data => console.log('Customer created:', data))
.catch(error => console.error('Error:', error));