Task
Get Task List
Return all task from Project
GET
Authorizations
Query Parameters
The ID of the project
The parameter complete is used to filter the tasks accordingly:
- When
complete = true
is passed, the function returns all tasks that are marked as complete within the specified project. - When
complete = false
is passed, the function returns all tasks that are marked as incomplete within the specified project. - When no value is passed for
complete
, the function returns all tasks, irrespective of their completion status, within the specified project.