Skip to main content
POST
/
projects
/
{project_id}
/
collaborators
Add project collaborators
curl --request POST \
  --url https://api.projectcor.com/v1/projects/{project_id}/collaborators \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data usersIds=123
{
  "message": "Collaborators added successfully"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

project_id
integer
required

Body

application/x-www-form-urlencoded
usersIds
integer[]

Array of user IDs to add as collaborators

Response

Collaborators added successfully

message
string
Example:

"Collaborators added successfully"