Docs

Add Crew

POST /collaborators/{collaboratorId}/crew

POST/collaborators/{collaboratorId}/crew

Required Tokens

FieldTypeRequiredDescription
BearerAuthorization: Bearer <api-key>OptionalYour API key. Pass it as the Bearer token on every request.

Manually creates a new crew member for a collaborator. Optionally links to an existing user account by email and sets initial attribute values.

Path Parameters

FieldTypeRequiredDescription
collaboratorIdGuidRequiredThe ID of the collaborator to add crew to.

Request Body

FieldTypeRequiredDescription
firstNamestringRequiredFirst name.
lastNamestringRequiredLast name.
emailstringOptionalEmail address.
phoneNumberstringOptionalPhone number.
titlestringOptionalJob title.
connectedUserEmailstring?OptionalEmail of an existing user account to link. Pass `null` to leave unlinked.
isPointOfContactboolRequiredWhether this person is the primary point of contact.
attributesCustomAttribute[]OptionalInitial attribute values (`{ id, value }`). Pass `[]` for none.

Response

Returns 200 OK with an empty body on success.