Docs
Update Crew Attribute
PUT /collaborators/{collaboratorId}/crew/{crewId}/attributes/{attributeId}
PUT
/collaborators/{collaboratorId}/crew/{crewId}/attributes/{attributeId}Required Tokens
| Field | Type | Required | Description |
|---|---|---|---|
| Bearer | Authorization: Bearer <api-key> | Optional | Your API key. Pass it as the Bearer token on every request. |
Updates the isRequired, isCrewEditable, and isCrewVisible flags on an attribute already assigned to a crew member.
Requires CollaboratorAdmin permission.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| collaboratorId | Guid | Required | The ID of the collaborator. |
| crewId | Guid | Required | The ID of the crew member. Replace `{{crewId}}` in the URL. |
| attributeId | Guid | Required | The ID of the attribute to update. Replace `{{attributeId}}` in the URL. |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
| isRequired | bool | Required | Whether this attribute is required. |
| isCrewEditable | bool | Required | Whether the crew member can edit this value. If `false`, only event admins can edit it. |
| isCrewVisible | bool | Required | Whether the crew member can see this attribute. If `false`, only event admins can see it. |
Response
Returns 200 OK with an empty body on success.