CRM uygulamanızda kayıtlı bir siparişin durumu API ile değiştirebilmeniz için hazır kod betikleri aşağıda paylaşılmıştır.
$url = "https://crm-adresiniz.com/setOrderStatus/";
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$headers = array(
"Api-Key: API_ANAHTARINIZ",
"Content-Type: application/x-www-form-urlencoded",
);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
$data = "orderID=1570762&orderStatusID=1";
curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
//for debug only!
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
$resp = curl_exec($curl);
curl_close($curl);
var_dump($resp);
Son güncelleme : 06.04.2023
Sitemizdeki deneyiminizi iyileştirmek için tanımlama bilgileri kullanıyoruz.
Kabul Et ve Devam EtDaha fazlasını öğrenmeniz mi gerekiyor? Gizlilil Politikası – ve – KVKK ve Çerezler