Docs
Assign Attribute
POST /eventTypes/{typeId}/sections/{sectionId}/attributes
POST
/eventTypes/{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. |
| Organization token | x-Organization-Token | Optional | Run **Authorize Organization** in the Authorization folder. |
Assigns a library attribute into a section of an event type. isTaskReviewRequired is only meaningful when isTaskTracked is true.
Returns 201 Created.
Requires OrganizationAdmin permission.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| typeId | Guid | Required | The event type that owns the section. |
| sectionId | Guid | Required | The section to assign the attribute into. |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
| attributeId | Guid | Required | The library attribute to assign. |
| isRequired | bool | Required | Whether the attribute is required on events of this type. |
| isTaskTracked | bool | Required | Whether filling the attribute is tracked as a task. |
| isTaskReviewRequired | bool | Required | Whether the tracked task requires review. Only meaningful when `isTaskTracked` is true. |
| index | int | Required | Display order within the section. |