Docs
Get Event Attributes
GET /Organizations/{organizationId}/eventAttributes
GET
/Organizations/{organizationId}/eventAttributesRequired 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 all custom event attributes defined for the organization. These attributes are applied to events at creation time.
Requires OrganizationBasicAccess permission.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| organizationId | Guid | Required | The organization to retrieve attributes for. |
Response
Returns an array of event attribute definitions.
| Field | Type | Description |
|---|---|---|
| id | Guid | Unique attribute ID. |
| name | string | Display name of the attribute. |
| type | string | Attribute type (e.g. `Select`, `Text`, `Date`). |
| isRequired | bool | Whether this attribute is required when creating an event. |
| options | Option[] | Available options (for `Select`/`MultiSelect` types). |
Option
| Field | Type | Description |
|---|---|---|
| id | Guid | Unique option ID. |
| value | string | Display value of the option. |
| color | string | Color associated with the option. |