Untitled
unknown
plain_text
3 years ago
1.1 kB
7
Indexable
<?php
public function bulkSms()
{
return Http::withHeaders([
'Content-Type' => 'application/json',
'X-Requested-With' => 'XMLHttpRequest',
'X-Authorization' => 'Bearer '.json_decode($this->generateToken())->token,
'SourceAddress' => '149.126.75.12'
])->post($this->getBaseUrl().'/public/CMS/bulksms', [
'timeStamp' => $this->generateTimestamp(),
"dataSet" => [
[
"username" => "CrownwebbAPI",
"channel" => "sms",
"packageId" => "4616",
"oa" => "SDPTest",
//"msisdn" => implode(",", $recipients),
"msisdn" => "254722225591,254715871947",
"message" => "Testing SDP Bulk SMS",
"uniqueId" => "2500688298721",
"actionResponseURL" => "https://posthere.io/c59f-4786-86ac",
"SourceAddress" => "149.126.75.12"
]
]
]);
}
Editor is loading...