Docs
Update Crew
PUT /collaborators/{collaboratorId}/crew/{crewId}
PUT
/collaborators/{collaboratorId}/crew/{crewId}Required Tokens
| Field | Type | Required | Description |
|---|---|---|---|
| Bearer | Authorization: Bearer <api-key> | Optional | Your 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
| Field | Type | Required | Description |
|---|---|---|---|
| collaboratorId | Guid | Required | The ID of the collaborator. |
| crewId | Guid | Required | The ID of the crew member to update. Replace `{{crewId}}` in the URL. |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
| firstName | string | Required | First name. |
| lastName | string | Required | Last name. |
| string | Optional | Email address. | |
| phoneNumber | string | Optional | Phone number. |
| title | string | Optional | Job title. |
| connectedUserId | string? | Optional | ID of the linked user account. Pass `null` to unlink. Note: this is the user's ID string, not a Guid parameter. |
| isPointOfContact | bool | Required | Whether this person is the primary point of contact. |
| attributes | CustomAttribute[] | Optional | Full replacement list of attribute values (`{ id, value }`). Pass `[]` to clear. |
Response
Returns 200 OK with an empty body on success.