Add a Collaborator to a Project

Add a new Collaborator to a Project

SecurityJWT or OAuth2 or DeveloperToken
Request
path Parameters
project_id
required
string <uuid>
query Parameters
include
string

Include additional "pre-loads" for this resource

Example: include=project_role
Request Body schema: application/json

Collaborator to create or update

email
string
Responses
200

Collaborator success response

Response Schema: application/json
_type
string
Enum: "collaborator" "pending_collaborator"
email
string
project_id
string <uuid>
object (User)

User model

user_id
string <uuid>
401

Unauthorized response

404

Not Found response

post/v2/projects/{project_id}/collaborators
Request samples
application/json
{ }
Response samples
application/json
{
  • "_type": "collaborator",
  • "email": "string",
  • "project_id": "405d8375-3514-403b-8c43-83ae74cfe0e9",
  • "user": {
    },
  • "user_id": "a169451c-8525-4352-b8ca-070dd449a1a5"
}