Event Ticket Type
An event ticket type is a type specification for an event, that is referred to when issuing new event tickets.
| Property | Type | Default | Description | Example |
|---|---|---|---|---|
id* | string (UUIDv4) | Unique identifier | "bd4a0997-39db-41d9-883a-cdfa83e2101f" | |
name* | string | Name of the event ticket type | "General Admission" | |
description | string | null | Description of the event ticket type | "Standard entry ticket" |
masterLanguage | string | Master language of the event ticket type | "en" | |
translations | array | [] | A list of translation objects EventTicketTypeTranslation for the object | [{ language: "da", name: "Standard billet" }] |
price | number | null | Price of ticket in lowest unit. Cents for EUR, USD etc. 0 = FREE | 2500 |
maxQuantity | number | null | Maximum number of tickets of this type that can be issued. Null means unlimited. | 1000 |
availableQuantity | number | Number of tickets still available for purchase | 850 | |
soldOut | boolean | false | Whether all tickets of this type have been sold | false |
addOn | boolean | false | Whether this ticket type is an add-on. This ticket type cannot be used as admittance to the event | false |
published | boolean | false | Whether this ticket type is publicly visible | true |
EventTicketTypeTranslation
An EventTicketTypeTranslation contains translated fields for the object.
| Property | Type | Default | Description | Example |
|---|---|---|---|---|
language* | string (ISO 639-1) | Language code for the translation | "da" | |
name | string | null | See description of field in EventTicketType | "Standard billet" |
description | string | null | See description of field in EventTicketType | "Standard adgangsbillet" |