kinlane
4/13/2012 - 6:54 AM

IDrive - EVS - REST API - downloadEvent

IDrive - EVS - REST API - downloadEvent

$uid = "[your IDrive user ID]";	
$pwd = "[your IDrive user password]";
$crtpath = "[a path to your local cert]";	

$eventid = "[id of event]";
$month = "[month]";
$year = "[year]";	
	
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $this->data['weburl'].'/evs/downloadEvent');

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);

$body = 'uid=' . $uid. '&pwd=' . $pwd.'&month=' . $month . '&year=' . $year . '&eventid=' . $eventid;

//echo $body;

curl_setopt($ch, CURLOPT_POSTFIELDS, $body);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/x-www-form-urlencoded; charset=UTF-8'));
curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,FALSE);
curl_setopt($ch,CURLOPT_CAINFO,$crtpath);

$output = curl_exec($ch);

curl_close($ch);