v1
latestOpenAPI 3.1.02026-07-26549156879.0 KBReads all Tasks
This endpoint retrieves all tasks created.
Query parameters
retrieve only the tasks that match the IDs passed in the request.
retrieve only the tasks that match the IDs passed in the request.
[ "1", "2", "3" ]
retrieve the tasks that have a company_id associated
retrieve the tasks that have a company_id associated
retrieve the tasks that have an assignee_id associated, assignee_id references to access_id.
retrieve the tasks that have an assignee_id associated, assignee_id references to access_id.
filter by tasks that have a due date.
filter by tasks that have a due date.
filter by tasks that have expired or are still due.
filter by tasks that have expired or are still due.
filter by tasks that with an especific status (todo | in_progress | done | discarded).
filter by tasks that with an especific status (todo | in_progress | done | discarded).
retrieve tasks where the user is affectee or assignee
retrieve tasks where the user is affectee or assignee
filter by tasks that have a specific category
filter by tasks that have a specific category
Response
OK
Example response
{
"data": [
{
"id": "1",
"name": "My task",
"company_id": "1",
"content": "Complete your performance review before Friday",
"due_on": "2024-06-06",
"assignee_ids": [
"1"
],
"author_employee_id": "1",
"completed_at": "2024-01-01T00:00:00Z",
"completed_by_id": "1",
"created_at": "2024-01-20T18:05:45.000Z",
"updated_at": "2024-01-20T18:05:45.000Z",
"status": "todo"
}
]
}