Docs

Update Crew

PUT /collaborators/{collaboratorId}/crew/{crewId}

PUT/collaborators/{collaboratorId}/crew/{crewId}

Required Tokens

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

Replaces all editable fields on an existing crew member. The attributes array is a full replacement of attribute values.

Path Parameters

FieldTypeRequiredDescription
collaboratorIdGuidRequiredThe ID of the collaborator.
crewIdGuidRequiredThe ID of the crew member to update. Replace `{{crewId}}` in the URL.

Request Body

FieldTypeRequiredDescription
firstNamestringRequiredFirst name.
lastNamestringRequiredLast name.
emailstringOptionalEmail address.
phoneNumberstringOptionalPhone number.
titlestringOptionalJob title.
connectedUserIdstring?OptionalID of the linked user account. Pass `null` to unlink. Note: this is the user's ID string, not a Guid parameter.
isPointOfContactboolRequiredWhether this person is the primary point of contact.
attributesCustomAttribute[]OptionalFull replacement list of attribute values (`{ id, value }`). Pass `[]` to clear.

Response

Returns 200 OK with an empty body on success.