GET
/
task
curl --request GET \
  --url https://api.teamcamp.app/v1.0/task \
  --header 'apiKey: <api-key>'
[
  {
    "taskId": "<string>",
    "taskName": "<string>"
  }
]

Authorizations

apiKey
string
header
required

Query Parameters

projectId
string
required

The ID of the project

complete
boolean

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.

Response

200
application/json
task response
taskId
string

The ID of the task

taskName
string

The Name of the task