This documentation is for creating a tracking request with KeyDelivery all-in-one tracking API
Users can use this API to track over 1200 global couriers in one place.
<?php
$url = 'https://www.kd100.com/api/v1/tracking/create';
$API_Key = ''; # You can find your ApiKey on https://app.kd100.com/api-managment
$Secret = ''; # You can find your Secret on https://app.kd100.com/api-managment
$param = array(
'carrier_id' => 'dhlen',
'tracking_number' => '9926933413',
'phone' => '',
'ship_from' => '',
'ship_to' => '',
'area_show' => '1',
'webhook_url' => 'http://www.kd100.com/console/debug/callback/sandbox'
);
$data = json_encode($param);
$signature = strtoupper(md5($data . $API_Key . $Secret));
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => $url,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS => $data,
CURLOPT_HTTPHEADER => array(
'API-Key: ' . $API_Key,
'signature: ' . $signature,
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
Top comments (0)