Docs
Assign Crew Type Section Attribute
POST /crew/types/{typeId}/sections/{sectionId}/attributes
POST
/crew/types/{typeId}/sections/{sectionId}/attributesRequired Tokens
| Field | Type | Required | Description |
|---|---|---|---|
| Bearer | Authorization: Bearer <api-key> | Optional | Your API key. Pass it as the Bearer token on every request. |
| Event token | x-Event-Token | Optional | Run **Get Tokens** in the Authorization folder, or call `GET /Events/{eventId}/authorize` manually. |
Assigns a (non-archived) crew attribute from the library into a section, carrying the three intake flags and an order index. An attribute can only be assigned once per section.
Requires EventAdmin permission on the event.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| typeId | Guid | Required | The crew type ID. |
| sectionId | Guid | Required | The section ID. |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
| crewAttributeId | Guid | Required | The crew attribute definition to assign. |
| isRequired | bool | Required | Whether the value is required at intake. |
| isCrewVisible | bool | Required | Whether the connected crew member can see it. |
| isCrewEditable | bool | Required | Whether the connected crew member can edit it. |
| index | int | Required | Order within the section. |
Response
201 Created — No response body.
Error Codes
| Code | HTTP Status | Description |
|---|---|---|
NOT_FOUND | 404 | Crew type, section, or attribute not found. |
BAD_REQUEST | 400 | The attribute is already assigned to this section. |