<!-- Intent: search the records for the sms alerts sent for job 1541867 to
	any EntityName that contains the text "Lindab".
	This will retrieve the 1st page of 5 records sorted by TimeStamp
	in an Ascending direction.
	-->

<?php
$curl_h = curl_init('http://api.v4.swiftreach.com/api/Alerts/Reports/Text/Search/1541867/0/5/TimeStamp/ASC/EntityName/Lindab');

curl_setopt($curl_h, CURLOPT_HTTPHEADER,
    array('Accept: application/json', 'Content-Type: application/json', 'SwiftAPI-Key: 123456')
);

# do not output, but store to variable
curl_setopt($curl_h, CURLOPT_RETURNTRANSFER, true);

$response = curl_exec($curl_h);

# output for testing
echo $response;

?>