Get Task

Retrieves a detailed view of the task for the provided id.

GET https://my.mattero.com.au/public/api/v1/tasks/{id}


Parameters

Name Location Type Description
id Route string:required The unique identifier associated with a Task.

Response

{
  "id": "262-A",
  "description": "Review court documents",
  "status": "InProgress",
  "priority": "Normal",
  "dueDate": "2022-08-13",
  "associatedMatterId": "7741-A",
  "assignedToId": "177-A"
}
{
  "id": "228-A",
  "description": "Ring client to confirm details",
  "status": "ToDo",
  "priority": "High",
  "dueDate": "2022-08-13",
  "associatedContactId": "9745-A",
  "assignedToId": "177-A"
}

Task object

Name Type Description
id string The unique identifier associated with a Task.
description string A descriptor or name used to describe or identify a Task.
status string The status of a Task, expected values are [Todo | InProgress | Done]
priority string The priority of a Task, expected values are [Low | Normal | High]
dueDate Date The date a task is due.
associatedContactId string The unique identifier of a contact associated with the Task.
associatedMatterId string The unique identifier of a matter associated with the Task.
assignedToId string The unique identifier of a user contact assigned to the Task.

Status Codes

Code Summary Description
200 Ok The request was successful with a body in the response.
400 Bad Request The request failed validation checks.
401 Unauthorized Failed authentication check.
403 Forbidden Failed authorization check.
404 Not Found Either couldn't find the endpoint or the query's entity.