Retrieve
Returns a single task record
Method:
GET
Endpoint:
/tasks
Example response:
array('api_version' => 1, 'endpoint' => 'tasks', 'method' => 'GET', 'status' => 'successful', 'data' => array());
The data
array will contain the task data in key-value pairs.
Update
Updates a single task record
Method:
PUT
Endpoint:
/tasks/{task_id}
Example response:
array('api_version' => 1, 'endpoint' => 'tasks', 'method' => 'PUT', 'id' => {task_id} 'status' => 'successful', 'data' => array());