Docs
Add Crew
POST /collaborators/{collaboratorId}/crew
POST
/collaborators/{collaboratorId}/crewRequired Tokens
| Field | Type | Required | Description |
|---|---|---|---|
| Bearer | Authorization: Bearer <api-key> | Optional | Your 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
| Field | Type | Required | Description |
|---|---|---|---|
| collaboratorId | Guid | Required | The ID of the collaborator to add crew to. |
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. |
| connectedUserEmail | string? | Optional | Email of an existing user account to link. Pass `null` to leave unlinked. |
| isPointOfContact | bool | Required | Whether this person is the primary point of contact. |
| attributes | CustomAttribute[] | Optional | Initial attribute values (`{ id, value }`). Pass `[]` for none. |
Response
Returns 200 OK with an empty body on success.