API เพิ่มลูกค้า
Create a new customer
POST
/
https://global.nextpoint.me/next-global/nextpoint/api/customer
curl --location
-H "publicKey : <your_publicKey> "
-H "secretKey : <your_secretKey> "
-H "token: <your_token> "
--data '{"phone":"<phone_number_of_customer>"}'
--request POST https://global.nextpoint.me/next-global/nextpoint/api/customer
$ch = curl_init();
$url = 'https://global.nextpoint.me/next-global/nextpoint/api/customer';
$body = array( 'phone' => '<phone_number_of_customer>' );
$headers = array(
'publicKey: <your_publicKey>',
'secretKey: <your_secretKey>'
'token: <your_token>' );
curl_setopt($ch, CURLOPT_URL, $url );
curl_setopt($ch, CURLOPT_POST,true );
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers );
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true );
curl_setopt($ch, CURLOPT_POSTFIELDS,
json_encode( $body )
);
$response = curl_exec($ch);
url_close($ch);
echo $response;
const axios = require('axios');
const url = 'https://global.nextpoint.me/next-global/nextpoint/api/customer';
const headers = {
'publicKey' : '<your_publicKey>',
'secretKey' : '<your_secretKey>' };
'Authorization': 'Bearer ' : '<your_token>' };
const body = { phone: '<phone_number_of_customer>' }
axios.post( url, body, { headers } ).then(response => {
console.log(response.data);
}).catch(error => {
console.log(error); });
import requests url = 'https://global.nextpoint.me/next-global/nextpoint/api/customer';
headers = {
'publicKey' : '<your_publicKey>',
'secretKey' : '<your_secretKey>',
'token' : '<your_token>' }
body = { 'phone': '<phone_number_of_customer>', }
response = requests.post(url, headers=headers )
if response.status_code == 200:
print(response.text)
else:
print(f"Error {response.status_code}: {response.reason}")
Headers
Name
Value
publicKey
secretKey
token
Body
Name
Type
Description
phone
string
เบอร์โทรศัพท์ของลูกค้า
Response
{
"status": "OK",
"statusCode": 200,
"message": "Create Customer Successfully",
"headers": {
"date": "Wed, 13 Mar 2024 08:32:32 GMT",
"connection": "close"
}
}
{
"status": 401,
"message": "No token provided!"
}
{
"statusCode" : 303 ,
"status" : "See Other" ,
"message" : "duplicate data customer"
}
Last updated