Docs

Update Crew Attribute

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

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

Required Tokens

FieldTypeRequiredDescription
BearerAuthorization: Bearer <api-key>OptionalYour 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

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

Request Body

FieldTypeRequiredDescription
isRequiredboolRequiredWhether this attribute is required.
isCrewEditableboolRequiredWhether the crew member can edit this value. If `false`, only event admins can edit it.
isCrewVisibleboolRequiredWhether 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.