PHP / JSON API Expert using Twilio API
Budget: $10 – $30 USD
We are getting data from API in JSON format. We need to collect data from two queries:
$messages = $twilio->messages
->read([
"from" => $from,
"to" => $to,
],
100
);
$messages2 = $twilio->messages
->read([
"to" => $from,
"from" => $to,
],
100
);
Once we get the data we want to sort it by date and show all the records together in order by date.
$messages = $twilio->messages
->read([
"from" => $from,
"to" => $to,
],
100
);
$messages2 = $twilio->messages
->read([
"to" => $from,
"from" => $to,
],
100
);
Once we get the data we want to sort it by date and show all the records together in order by date.