curl --location
-H "publicKey: <your_publickey> "
-H "secretKey: <your_secretkey> "
-H "token: <your_token> "
--data '{
"phone":"<phone_number_of_customer>" ,
"price":"<number_of_point>"}'
--request PUT https://global.nextpoint.me/next-global/nextpoint/api/customer/point-plus
$ch = curl_init();
$url = 'https://global.nextpoint.me/next-global/nextpoint/api/customer/point-plus';
$body = array(
'phone' => '<phone_number_of_customer>',
'price' => '<number_of_point>', );
$headers = array(
'publicKey: <your_publickey>',
'secretKey: <your_secretkey>',
'token: <your_token>' );
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT');
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/point-plus';
const headers = {
'publicKey' : '<your_publickey>',
'secretKey' : '<your_secretkey>',
'Authorization': 'Bearer ' : '<your_token>' };
const body = {
phone: '<phone_number_of_customer>',
price: '<number_of_point>', }
axios.put(url ,body , { headers } ).then(response => {
console.log(response.data.data);
}).catch(error => {
console.log(error);
});
import requestsurl = 'https://global.nextpoint.me/next-global/nextpoint/api/customer/point-plus'
headers = {
'publicKey': '<your_publickey>',
'secretKey': '<your_secretkey>',
'token': '<your_token>' }
body = {
'phone': '<phone_number_of_customer>',
'price': '<number_of_point>', }
response = requests.put(url, headers=headers )
if response.status_code == 200:
print(response.text)
else:
print(f"Error {response.status_code}: {response.reason}")