Docs
Get Event Attributes
GET /eventAttributes?includeArchived=false
GET
/eventAttributes?includeArchived=falseRequired 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 the organization's event attribute library. The organization is resolved from the x-Organization-Token header.
Requires OrganizationAdmin permission.
Query Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| includeArchived | bool | Optional | Include archived attributes. Defaults to `false`. |
Response
| Field | Type | Description |
|---|---|---|
| id | Guid | Attribute ID. |
| name | string | Display name. |
| type | string | Attribute type. One of: `Select`, `MultiSelect`, `Text`, `RichText`, `Number`, `Date`, `DateTime`, `Checkbox`, `Link`, `File`, `MultiFile`. |
| isArchived | bool | Whether the attribute is archived. |
| options | Option[] | Available options (`Select` / `MultiSelect` only). |
Option
| Field | Type | Description |
|---|---|---|
| id | Guid | Option ID. |
| value | string | Option value. |
| color | string | Display color. |
| isArchived | bool | Whether the option is archived. |