Skip to main content
GET
/
tasks
/
{task_id}
/
collaborators
Get task collaborators
curl --request GET \
  --url https://api.projectcor.com/v1/tasks/{task_id}/collaborators \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "first_name": "<string>",
    "last_name": "<string>",
    "picture": "<string>",
    "remaining_hours": 123,
    "estimated_by_user": 123
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

task_id
integer
required

The ID of the task

Response

200 - application/json

List of task collaborators

id
integer
first_name
string
last_name
string
picture
string
remaining_hours
number
estimated_by_user
integer