<!-- Intent: Initiates a download of the raw records for the voice alerts sent for job 1546897. The records are returned in a zip compressed CSV file. --> <?php $curl_h = curl_init('http://api.v4.swiftreach.com/api/Alerts/Reports/Voice/Download/1546897'); 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; ?> <!-- example return value --> <!-- return value is a binary file -->