Docs
Get Event Type
GET /eventTypes/{typeId}
GET
/eventTypes/{typeId}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. |
Returns a single event type with its full nested sections and attribute assignments. This is what opens the Type Editor.
Requires OrganizationAdmin permission.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| typeId | Guid | Required | The event type to retrieve. |
Response
| Field | Type | Description |
|---|---|---|
| id | Guid | Type ID. |
| name | string | Display name. |
| icon | string| null | Icon identifier. |
| color | string| null | Display color. |
| isArchived | bool | Whether the type is archived. |
| sections | Section[] | Sections within the type. |
Section
| Field | Type | Description |
|---|---|---|
| id | Guid | Section ID. |
| name | string | Section display name. |
| index | int | Display order within the type. |
| attributes | Assignment[] | Attribute assignments in the section. |
Assignment
| Field | Type | Description |
|---|---|---|
| attributeId | Guid | The assigned attribute's ID. |
| name | string | Attribute display name. |
| type | string | Attribute type. |
| isRequired | bool | Whether the attribute is required on events of this type. |
| isTaskTracked | bool | Whether filling the attribute is tracked as a task. |
| isTaskReviewRequired | bool | Whether the tracked task requires review. Only meaningful when `isTaskTracked` is true. |
| index | int | Display order within the section. |