<?php
$curl = curl_init("https://api.avosms.com/v1/model/sms/list");
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_COOKIESESSION, true);
$postfields = array(
'id' => "{ID}", //REQUIRED
'key' => "{KEY}", //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;
if($code == "OK")
{
$listModelSms = $response->list_model_sms;
foreach($listModelSms as $model)
{
$modelId = $model->model_id;
$modelName = $model->model_name;
$modelContent = $model->model_content;
$modelCreatioDate = $model->model_creation_date;
}
}
?>