Docs
Update Assignment
PUT /eventTypes/{typeId}/sections/{sectionId}/attributes/{attributeId}
PUT
/eventTypes/{typeId}/sections/{sectionId}/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. |
| Organization token | x-Organization-Token | Optional | Run **Authorize Organization** in the Authorization folder. |
Updates the per-assignment flags and/or reorders the attribute within the section (the server reshuffles siblings).
To move an assignment to a different section, Unassign it from the old section, then Assign it to the new one carrying the same flags.
Returns 200 OK.
Requires OrganizationAdmin permission.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| typeId | Guid | Required | The event type that owns the section. |
| sectionId | Guid | Required | The section that holds the assignment. |
| attributeId | Guid | Required | The assigned attribute to update. |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
| 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. |