curl --request GET \
--url https://api.smokeball.com/tasks \
--header 'Authorization: <api-key>' \
--header 'x-api-key: <api-key>'{
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET",
"self": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"value": [
{
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET",
"self": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"matter": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"parentTask": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"createdBy": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"completedBy": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"lastUpdatedBy": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"assignees": [
{
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
}
],
"subTasks": [
{
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
}
],
"subject": "Review contract for John Smith",
"note": "Contract needs to be reviewed and discussed with John",
"categories": [
"<string>"
],
"dueDate": "2020-02-15T00:00:00Z",
"completedDate": "2020-02-15T00:00:00Z",
"createdDate": "2020-02-15T00:00:00Z",
"isCompleted": false,
"isDeleted": false,
"lastUpdated": 637847425252027400,
"duration": "PT4H33M"
}
],
"offset": 123,
"limit": 123,
"size": 123,
"first": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"previous": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"next": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"last": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
}
}Returns a list of tasks.
curl --request GET \
--url https://api.smokeball.com/tasks \
--header 'Authorization: <api-key>' \
--header 'x-api-key: <api-key>'{
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET",
"self": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"value": [
{
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET",
"self": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"matter": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"parentTask": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"createdBy": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"completedBy": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"lastUpdatedBy": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"assignees": [
{
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
}
],
"subTasks": [
{
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
}
],
"subject": "Review contract for John Smith",
"note": "Contract needs to be reviewed and discussed with John",
"categories": [
"<string>"
],
"dueDate": "2020-02-15T00:00:00Z",
"completedDate": "2020-02-15T00:00:00Z",
"createdDate": "2020-02-15T00:00:00Z",
"isCompleted": false,
"isDeleted": false,
"lastUpdated": 637847425252027400,
"duration": "PT4H33M"
}
],
"offset": 123,
"limit": 123,
"size": 123,
"first": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"previous": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"next": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
},
"last": {
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
}
}0 <= x <= 21474836471 <= x <= 500Filter by tasks that are assigned to the specified matter id..
"1bf55840-cba3-4f8a-8c0f-66082692e493"
Filter by tasks tasks that have been completed. Leave blank if
true
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.
637873555398585000
Filter by last updated date of a task. Cannot be used in conjunction with UpdatedSince.
"2022-04-23T14:00:00Z"
When request is successful. Returns a list of 'Task' objects.
Show child attributes
The subject - a short description of the task.
"Review contract for John Smith"
Notes on the task.
"Contract needs to be reviewed and discussed with John"
Categories for the task.
The due date of the task.
"2020-02-15T00:00:00Z"
When the task was completed.
"2020-02-15T00:00:00Z"
When the task was created.
"2020-02-15T00:00:00Z"
True when the task is completed.
false
True when the task is deleted.
false
Last updated timestamp.
637847425252027400
Duration of the task in ISO 8601 duration format.
"PT4H33M"