POST/api/schedule/{schedule_id}
<?php
$curl = curl_init();
$token = "";
$schedule_id = "";
$data = [
'phone' => '081XXXXXXX',
'message' => 'hi',
'date' => '2019-01-22',
'time' => '14:30',
];
curl_setopt($curl, CURLOPT_HTTPHEADER,
array(
"Authorization: $token",
)
);
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($data));
curl_setopt($curl, CURLOPT_URL, "http://app.absen.co.id/api/schedule/$schedule_id");
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0);
$result = curl_exec($curl);
curl_close($curl);
echo "<pre>";
print_r($result);
?>
Request parameters:
Authorization | Required | Your Token from http://app.absen.co.id, can be seen in the menu: Device – Setting |
---|---|---|
phone | Required | Whatsapp numbers that will receive messages. You can use the country code prefix or not. Example: 081223xxxx |
message | Required | text format: UTF-8 or UTF-16 string. for newline (\n) |
date | Required | set the date when the message will be sent. |
time | Required | set the time when the message will be sent. |