v2
latestOpenAPI 3.0.12026-07-262352981007.0 KBTasks
Get tasks
Returns a list of tasks.
get/tasks
Query parameters
Offsetinteger
Limitinteger
MatterIdstring
Example:1bf55840-cba3-4f8a-8c0f-66082692e493
Filter by tasks that are assigned to the specified matter id..
IsCompletedboolean
Example:true
Filter by tasks tasks that have been completed. Leave blank if
UpdatedSinceinteger
Example:637873555398585000
Filter by tasks updated since a specified time (.net ticks representation of the UTC datetime). Cannot be used in conjunction with LastUpdated.
This field will not be supported in future, please use LastUpdated instead.
LastUpdatedstring date-time
Example:2022-04-23T14:00:00Z
Filter by last updated date of a task. Cannot be used in conjunction with UpdatedSince.
Response
When request is successful. Returns a list of 'Task' objects.
Example response
{
"value": [
{
"subject": "Review contract for John Smith",
"note": "Contract needs to be reviewed and discussed with John",
"dueDate": "2020-02-15T13:00:00Z",
"dueDateOnly": "2020-02-15T00:00:00",
"completedDate": "2020-02-15T13:00:00Z",
"completedDateOnly": "2020-02-15T00:00:00",
"createdDate": "2020-02-15T13:00:00Z",
"createdDateOnly": "2020-02-15T00:00:00",
"lastUpdated": 637847425252027400,
"duration": "PT4H33M"
}
]
}