<?php
$curl = curl_init("https://api.avosms.com/v1/sender/delete");
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_COOKIESESSION, true);
$postfields = array(
'id' => "{ID}", //REQUIRED
'key' => "{KEY}", //REQUIRED
'sender' => "{SENDER}", //REQUIRED
);
$postfields_json = json_encode($postfields);
$trame = http_build_query($postfields, '', '&');
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $trame);
$raw_response = curl_exec($curl);
curl_close($curl);
$response = json_decode($raw_response);
$status_response = $response->status;
$code = $response->code;
?>