Docs
Add Crew Attribute
POST /collaborators/{collaboratorId}/crew/{crewId}/attributes
POST
/collaborators/{collaboratorId}/crew/{crewId}/attributesRequired Tokens
| Field | Type | Required | Description |
|---|---|---|---|
| Bearer | Authorization: Bearer <api-key> | Optional | Your API key. Pass it as the Bearer token on every request. |
Adds a custom attribute to a crew member. The attributeId must reference an existing attribute definition on the event.
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. |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
| attributeId | Guid | Required | ID of the attribute definition to add. |
| isRequired | bool | Required | Whether this attribute is required for this crew member. |
| 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.