The following code PHP requires the Curl library and shows how to request and parse a task list. In this example we will query the task list for all tasks assigned to one person and print out the results.
Documentation for the task resource can be found here:
https://www.myintervals.com/api/resource.php?r=task
//set some variables
$apiToken = ""; // set this value to your API token
$assigneeId = 92; //your assignee id
//initialize the curl handler
$ch = curl_init();
//set options
curl_setopt($ch, CURLOPT_URL, "https://api.myintervals.com/task/?assigneeid=$assigneeId");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_USERPWD, $apiToken . ":");
curl_setopt($ch, CURLOPT_HTTPHEADER, array("Accept: application/json")); //application/xml is also a valid header
//query the API and parse the resulting json code into an array
$response = json_decode(curl_exec($ch);)
//close the curl handler
curl_close($ch);
//output the results
print_r($response);
Comments are closed.
For more Intervals help documentation, please visit help.myintervals.com