I have send notification messages using Twilio api. Messages are sending properly.
$notification = $client
->notify->services($serviceSid)
->notifications->create([
"toBinding" => [
'{"binding_type":"sms", "address":"+971444444444"}',
'{"binding_type":"sms", "address":"+971444444445"}'
],
'body' => 'Test message 8'
]);
Response of the request is 201 and returning a sid starting with 'NT'
. How to track status of this messages?