<?php
$curl = curl_init("https://api.avosms.com/v1/contact/add");
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_COOKIESESSION, true);
$postfields = array(
'id' => "{ID}", //REQUIRED
'key' => "{KEY}", //REQUIRED
'listContactId' => "{LIST CONTACT ID}", //REQUIRED
'contactTelephoneNumber' => "{CONTACT TELEPHONE NUMBER}", //REQUIRED
'contactCivility' => "{CONTACT CIVILITY}", //OPTIONNAL
'contactName' => "{CONTACT NAME}", //OPTIONNAL
'contactFirstName' => "{CONTACT FIRST NAME}", //OPTIONNAL
'contactEmail' => "{CONTACT EMAIL}", //OPTIONNAL
'contactBirthday' => "{CONTACT BIRTHDAY}", //OPTIONNAL
'contactOther' => "{CONTACT OTHER}", //OPTIONNAL
);
$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;
?>