1. Home
  2. Docs
  3. Dokumentasi API
  4. Create Schedule Message

Create Schedule Message

POST/api/schedule

<?php
$curl = curl_init();
$token = "";
$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");
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:
AuthorizationRequiredYour Token from http://app.absen.co.id, can be seen in the menu: Device – Setting
phoneRequiredWhatsapp numbers that will receive messages. You can use the country code prefix or not. Example: 081223xxxx
messageRequiredtext format: UTF-8 or UTF-16 string. for newline (\n)
dateRequiredset the date when the message will be sent.
timeRequiredset the time when the message will be sent.