GET
/
task
/
{taskId}
curl --request GET \
  --url https://api.teamcamp.app/v1.0/task/{taskId} \
  --header 'apiKey: <api-key>'
{
  "taskId": "<string>",
  "taskName": "<string>",
  "projectId": "<string>",
  "groupId": "<string>",
  "group": "<string>",
  "description": "<string>",
  "status": true,
  "subscribers": [
    "<string>"
  ],
  "dueDate": "<string>",
  "priority": "<string>",
  "estimateTime": 123,
  "milestoneId": 123,
  "taskUsers": [
    {
      "taskUserId": "<string>"
    }
  ]
}

Authorizations

apiKey
string
header
required

Path Parameters

taskId
string
required

The unique identifier of the task to get task details.

Minimum length: 10

Response

200
application/json
Task response

The response is of type object.