---
title: "GET /api/events/info/{id}"
method: GET
path: "/api/events/info/{id}"
tags: ["api", "events"]
---

# GET /api/events/info/{id}

`GET /api/events/info/{id}`

Get Event info

## Path parameters

- `id` string, required

## Query parameters

- `web` string
- `underShop` string
- `posOperationMode` 'OPERATOR' | 'KIOSK'
- `pos` boolean
- `channel` string
- `locale` string — Get the info for a specific language

## Response `200`

OK

- EventInfoResource
  - `_id` string, required — The ID of the event
  - `name` string, required — The name of the event
  - `start` string, date-time, required — An ISO timestamp indicating when the event starts
  - `end` string, date-time, required — An ISO timestamp indicating when the event ends
  - `url` string — The url of the event
  - `slogan` string — The slogan of the event
  - `description` string — A description about the event. Description is in RichText - JSON format.
  - `locationName` string — The name of the location where the event takes place
  - `posDiscounts` object[] — An array of POS discounts of the event
    - `_id` string, required — The ID of the POS discount
    - `name` string, required — The name of the POS discount
    - `discountType` 'TOTAL' | 'PERCENTAGE' | 'fix' | 'var' | 'fixPerItem' | 'waiveFees' — The type of the POS discount
    - `value` number, float, required — The value of the POS discount
  - `categories` object[] — An array of ticket categories of the event
    - `_id` string, required — The ID of the ticket category of the event
    - `name` string, required — The name of the ticket category of the event
    - `description` string — The description of the ticket category of the event
    - `seatingReference` string — The ID of the seating category
    - `ref` string — The reference to identify the seating category
    - `amount` number, float — The amount of available tickets of the category of the event
    - `recommendedTicket` string — Recommended ticket of the category
    - `maxAmountPerOrder` number, float — Maximum amount per order of the category
    - `listWithoutSeats` boolean — Whether this category can be sold without seats
  - `groups` object[] — An array of groups of ticket types of the event
    - `_id` string, required — The ID of of the ticket group of the event
    - `name` string, required — The name of the ticket group of the event
    - `tickets` string[], required — An array of ID's of ticket types of the event
  - `cartAutomationRules` object[] — An array of automation rules for carts of the event
    - `_id` string, required — The ID of the cart automation rule
    - `name` string, required — The name of the automation rule for carts of the event
    - `triggerType` 'hasBeenAdded', required — The trigger type of the automation rule.
    - `triggerTargetGroup` string, required — The trigger target group of the rule. The ID of a ticket group
    - `thenType` 'autoAdd' | 'chooseFrom', required — The type of thenType of the rule. autoAdd = is the type to add automatically to cart. chooseFrom = is the type to choose from e.g. another ticket group
    - `thenTargets` object[] — The target of the then type
      - `_id` string, required — The ID of the then target
      - `thenTargetGroup` string — The ID of the ticket group 'then' refers to
      - `thenTargetMin` number, float — Minimum amount of tickets where the then action is valid
      - `thenTargetMax` number, float — Maximum amount of tickets where the then action is valid
  - `discountGroups` object[] — An array of discount groups of the event
    - `_id` string, required — The ID of the discount group of the event
    - `name` string, required — The name of the discount group of the event
    - `rules` object[] — An array of rules of the discount group
      - `_id` string, required — The ID of the discount group rule
      - `group` string — The ID of the discount group
      - `type` 'ticketGroups' | 'cartSum' — The type of the discount rule. ticketGroups is the type for tickets. cartSum is the type for sum of a cart
      - `min` number, float, required — Minimum amount of tickets where the discount is valid
      - `max` number, float, required — Maximum amount of tickets where the discount is valid
    - `discountType` 'TOTAL' | 'PERCENTAGE' | 'fix' | 'var' | 'fixPerItem' | 'waiveFees' — The type of the discount group. TOTAL = absolute discount. PERCENTAGE = percentage discount. fix = fixed discount. var = variable discount
    - `value` number, float, required — The value of the discount group
  - `extraFields` object[] — An array of extra fields of the event
    - `_id` string, required — The ID of the extra field
    - `name` string — The name of the extra field
    - `description` string — The description of the extra field
    - `required` boolean, required — Whether the extra field is required
    - `collectInCheckout` boolean — Whether the extra field is collected in checkout
    - `deleted` boolean — Whether the extra field is deleted
    - `type` 'text' | 'number' | 'select' | 'checkbox' | 'tel' | 'country' | 'email' | 'date' | 'documentUpload' | 'signature' | 'address' — The type of the extra field. text = is a text field. number = is a number field. select = is a selection field of different selections. checkbox = is a checkbox field. tel = is a number field for a phone number. email = is a text field for an email. country = is a text field field for country.
    - `options` string[] — An array of options of the extra field
    - `onlyForCertainTicketTypes` boolean — Whether the extra field is only for certain ticket types
    - `allowedTicketTypes` string[] — An array of IDs of the ticket types allowed for the extra field
    - `printable` boolean — Whether the extra field is printable
    - `conditions` object[] — An array of conditions of the extra field. The conditions can refer to other extra fields.
      - `_id` string, required — The ID of the condition
      - `baseSlug` string, required — The slug of the base extra field which the condition refers to
      - `value` union — The value which the operator will be used on to check the condition.
        - boolean
        - number
        - object
        - string
      - `operator` 'equals' | 'notEquals' | 'greaterThan' | 'lessThan' | 'greaterThanOrEquals' | 'lessThanOrEquals' | 'exists' | 'notExists', required — The operator which will be used to check the condition
    - `settings` union — Type-specific settings for the extra field
      - object
        - `allowedMimeTypes` string[]
      - object
        - `variant` 'date' | 'birthdate', required
        - `minimumAge` number, float, nullable
        - `maximumAge` number, float, nullable
      - object
        - `document` object
          - `url` string, uri, required
          - `fileName` string, required
          - `mimeType` 'application/pdf', required
        - `documentName` string
        - `requireScrollthrough` boolean
  - `ticketExtraFields` object[] — An array of extra fields for ticket types of the event
    - `_id` string, required — The ID of the extra field
    - `name` string — The name of the extra field
    - `description` string — The description of the extra field
    - `required` boolean, required — Whether the extra field is required
    - `collectInCheckout` boolean — Whether the extra field is collected in checkout
    - `deleted` boolean — Whether the extra field is deleted
    - `type` 'text' | 'number' | 'select' | 'checkbox' | 'tel' | 'country' | 'email' | 'date' | 'documentUpload' | 'signature' | 'address' — The type of the extra field. text = is a text field. number = is a number field. select = is a selection field of different selections. checkbox = is a checkbox field. tel = is a number field for a phone number. email = is a text field for an email. country = is a text field field for country.
    - `options` string[] — An array of options of the extra field
    - `onlyForCertainTicketTypes` boolean — Whether the extra field is only for certain ticket types
    - `allowedTicketTypes` string[] — An array of IDs of the ticket types allowed for the extra field
    - `printable` boolean — Whether the extra field is printable
    - `conditions` object[] — An array of conditions of the extra field. The conditions can refer to other extra fields.
      - `_id` string, required — The ID of the condition
      - `baseSlug` string, required — The slug of the base extra field which the condition refers to
      - `value` union — The value which the operator will be used on to check the condition.
        - boolean
        - number
        - object
        - string
      - `operator` 'equals' | 'notEquals' | 'greaterThan' | 'lessThan' | 'greaterThanOrEquals' | 'lessThanOrEquals' | 'exists' | 'notExists', required — The operator which will be used to check the condition
    - `settings` union — Type-specific settings for the extra field
      - object
        - `allowedMimeTypes` string[]
      - object
        - `variant` 'date' | 'birthdate', required
        - `minimumAge` number, float, nullable
        - `maximumAge` number, float, nullable
      - object
        - `document` object
          - `url` string, uri, required
          - `fileName` string, required
          - `mimeType` 'application/pdf', required
        - `documentName` string
        - `requireScrollthrough` boolean
  - `image` string — An image for the event
  - `styleOptions` object — Style options of the event page
    - `headerStyle` string — Header style of the event page
    - `brandOne` string — First brand of the event
    - `brandTwo` string — Second brand of the event
    - `hideLocationMap` boolean — Whether the location map on the event page hide
    - `hideLocationAddress` boolean — Whether the location address on the event page hide
    - `categoryAlignment` number, float — The style of category alignment. 0 = cascade = categories among themselves. 1 = asTabs = categories as tabs. 2 = boxes = categories as boxes. 3 = ticket wizard = categories as ticket wizard if configured.
    - `showAvailabilityIndicator` boolean — Whether the availability indicator on the event page should be shown
    - `availabilityIndicatorThresholds` number[] — The availability indicator thresholds of the event
    - `showAvailable` boolean — Whether to show availability of the time slot. Only applicable for time slot events.
    - `timeSlotsCheckoutSelection` 'beforeTickets' | 'afterTickets' — Time slots selection in checkout.
  - `video` object — The video settings of the event
    - `youtubeID` string — The youtube video ID of the event video setting
  - `gallery` object[] — An array of gallery items of the event
    - `_id` string, required — The ID of the gallery item
    - `title` string — The title of the gallery item
    - `description` string — The description of the gallery item
    - `copyright` string — The copyright of the gallery item
    - `index` number, float — The index of the gallery item
    - `image` string — The image of the gallery item
  - `checkinInformation` object — The checkin information of the event
    - `_id` string, required — The ID of the checkin information of the event
    - `checkinStarts` string, date-time — The date of when the checkin of the event starts
  - `accentColor` string — The accent color of the event page
  - `sellerId` string — The ID of the seller owning this event
  - `sellStart` string, date-time — An ISO timestamp indicating when the event sale starts
  - `ticketShopHeader` string — A header image for the ticket shop of the event
  - `hardTicketSettings` object — The hard ticket settings of the event
    - `_id` string, required — The ID of the event hard ticket settings
    - `enabled` boolean — Whether hard tickets can be bought for this event
    - `fulfillmentType` 'self' | 'managed' — The type of fulfillment. self fulfilled by the seller. managed fulfilled by vivenu.
    - `printingMethod` 'preprinted' | 'adhoc' — Which printing method is used. preprinted = The tickets are preprinted. adhoc = The tickets are printed ad-hoc.
    - `hardTicketOuterCharge` number, float — Additional charge for every hard ticket that is added to the ticket price and the other outer charges - paid by the ticket buyer.
    - `hardTicketInnerCharge` number, float — Additional charge for hard tickets as in the contract of the seller
    - `hardTicketPreviewURL` string — The hard ticket design image
    - `promotionName` string — A special name for hard tickets. e.g. "Collector edition"
    - `promotionText` string — A description about what makes this ticket so special
    - `requiredDays` integer — Required days until deliver of the hard tickets
  - `tracking` object — The tracking of the event
    - `facebookPixel` object — The facebook pixel information of the event tracking
      - `active` boolean — Whether facebook pixel of event tracking is active
      - `pixelId` string — The ID of facebook pixel of the event tracking
    - `tagging` object — The tagging of the event tracking
      - `enabled` boolean — Whether tagging of event tracking is enabled
      - `tags` string[] — An array of tags of the event tracking
  - `accountSettings` object — Account settings of the event
    - `_id` string, required — The ID of the account settings of the event
    - `enforceAccounts` boolean — Whether to enforce accounts for the event
    - `enforceAuthentication` 'DISABLED' | 'PREVENT_CHECKOUT' | 'PREVENT_DETAILS_STEP' — Whether to enforce authentication for the event and how to enforce it
  - `dataRequestSettings` object — The data request settings of the event
    - `_id` string, required — The ID of the data request settings of the event
    - `requiresPersonalization` boolean — Whether the tickets for this event need personalization
    - `requiresExtraFields` boolean — Whether the tickets for this event need extra data fields
    - `repersonalization` boolean — Whether the tickets can be re personalized.
    - `repersonalizationAllowed` boolean — Whether the tickets can be re personalized.
    - `repersonalizationEndDate` string, date-time — If repersonalization = true. Until when the re personalization is allowed.
    - `repersonalizationDeadline` object — If repersonalization = true. A relatve date specification until when the re personalization is allowed.
      - `target` string, nullable — The target of the relative date
      - `unit` 'hours' | 'days' | 'weeks' | 'months' | 'years', required — The unit in which the offset is specified
      - `offset` integer, required — The offset to the date
    - `repersonalizationFee` number, float — If repersonalization = true. The per-ticket fee for repersonalization.
    - `repersonalizationsLimit` number, float, nullable — If repersonalization = true. The number of times repersonalization is allowed.
    - `limitOnlyNameChanges` boolean — If enabled, only name changes count towards the re-personalization limit for every ticket type of the event. Extra fields can always be updated until the re-personalization deadline.
    - `posPersonalization` 'noPersonalization' | 'optionalPersonalization' | 'requiredPersonalization' — The type of personalization for this event on Point of Sale applications.
    - `skipAddressInfo` boolean — Whether the checkout should not ask for the address of the ticket buyer.
    - `enforceCompany` boolean — Whether the company of the ticket buyer is a required field.
  - `seoSettings` object — The search engine optimization settings of the event
    - `_id` string, required — The ID of the SEO setting
    - `tags` string[] — An array of tags of the seo settings
    - `noIndex` boolean — Whether the seo setting has no indexing
    - `title` string — The title of the seo settings
    - `description` string — The description of the seo settings
  - `soldOutFallback` object — The sold out fallback of the event
    - `_id` string, required — The ID of sold out entry
    - `soldOutFallbackType` 'default' | 'moreinformation' | 'waitinglist'
    - `soldOutFallbackLink` string — The link of the sold out fallback
  - `reservationSettings` object — The reservation settings of event
    - `_id` string, required — The ID of the reservation setting
    - `option` 'noReservations' | 'reservationsOnly' | 'reservationsAndPayment' | 'internalReservationsAndPayment' — The option of the reservation setting. reservationsOnly = needs reservation only. noReservations = no reservations needed. reservationsAndPayment = needs reservation and payment
    - `strategyId` string — The ID of the strategy of a purchase intents to be used on the event
  - `customTextConfig` object — The custom text configuration of the event
    - `_id` string, required — The ID of the custom text configuration
    - `buyTicketsCTA` string — The custom CTA after buy tickets
  - `customSettings` object — Custom settings of the event
    - `_id` string, required — The ID of the custom settings of the event
    - `hideTicketsInTransactionPage` boolean — Whether the ticket types of the event should be visible on transaction page
    - `dontSendTicketMail` boolean — Whether an email should be sent of tickets of the event
    - `dontSendBookingConfirmationMail` boolean — Whether an email should be sent for booking confirmation
    - `customMailHeaderImage` string — A custom header image of the mail for ticket types of the event
    - `customTransactionCompletionText` string — A custom transaction completion text for completed transactions of the event
    - `disableAppleWallet` boolean — Whether the Apple and Google Wallet functionality should be disabled on the event. Deprecated: use event.deliverySettings.wallet instead
    - `disablePdfTickets` boolean — Whether the PDF tickets download functionality should be disabled on the event. Deprecated: use event.deliverySettings.pdf instead
    - `showStartDate` boolean — Whether the start date of the event should be visible on listings
    - `showStartTime` boolean — Whether the start time of the event should be visible on listings
    - `showEndDate` boolean — Whether the end date of the event should be visible on listings
    - `showEndTime` boolean — Whether the end time of the event should be visible on listings
    - `showTimeRangeInListing` boolean — Whether the end time of the event should be visible on listings
    - `showTimeRangeInTicket` boolean — Whether the time range of the event should be visible on ticket PDFs
    - `customCheckoutCSS` string — Custom CSS styling of the checkout of the event
    - `useCustomCheckoutBrand` boolean — Whether the checkout of the event should use custom brand
    - `customCheckoutBrand` string — A custom checkout brand of the event
    - `hideLogoInCheckout` boolean — Whether the logo should be hide on the checkout of the event
    - `customEventPageHTML` string — A custom HTML of the event page
    - `customEventPageCSS` string — A custom css styling of the event page
    - `customConfirmationPage` string — A custom css styling of the event page
    - `hideSeatmapInCheckout` boolean — Hides the seatmap from the ticket buyer even if seating ticket types are available
    - `dontSendBookingConfirmationSMS` boolean — Whether a sms should be sent for booking confirmation
  - `upsellSettings` object — The upsell settings of the event
    - `_id` string, required — The ID of the upsell settings of the event
    - `active` boolean — Whether upselling is active on the event
    - `productStream` string — The product stream for upselling
    - `headerImage` string — A header image for the ticket shop, when selecting products
    - `crossSells` object — The cross selling settings.
      - `eventIds` string[] — The array of the promoted event IDs.
  - `useTimeSlots` boolean — Whether the event uses time slots.
  - `saleStatus` 'onSale' | 'planned' | 'past' | 'soldOut' — The status of event sale
  - `underShopId` string — The ID of the selected under shop
  - `unlockMode` 'none' | 'couponCode' — Sets how event is locked, e.g. by coupon code.
  - `channelId` string — The ID of the selected channel
  - `seating` boolean — Whether seating is active or not
  - `seatingEventId` string — The ID of the seating event
  - `seatingChildEventIds` string[] — The seating event IDs of the child events. Usually used to render maps for season ticket events
  - `seatingConfigurations` object — Settings to control the behaviour of maps
  - `contingents` string[] — An array of contingents IDs
  - `theme` string — The theme of the event
  - `taxRate` number, float — The default tax rate of the event
  - `max` number, float — Maximum amount of tickets per order
  - `min` number, float — Minimum amount of tickets per order
  - `v` number, float — The remaining volume of the event
  - `cXv` number, float
  - `cXf` number, float
  - `ccXf` number, float
  - `startingPrice` string — The starting price of the event
  - `showTimeRangeInTicket` boolean — Whether to show the start and end time of the event on a ticket PDF or not
  - `showTimeRangeInListing` boolean — Whether to show the start and end time of the event in listings or not
  - `showCountdown` boolean — Whether to show the countdown till the sale of the event starts or not
  - `showOtherEvents` boolean — Whether to show other events of the seller on the event page
  - `accountsModule` boolean — Whether customer accounts for the event are enabled or not
  - `stripe_api_key` string
  - `currency` 'EUR' | 'USD' | 'GBP' | 'AUD' | 'CHF' | 'THB' | 'ILS' | 'COP' | 'MXN' | 'DKK' | 'NOK' | 'SEK' | 'QAR' | 'CAD' | 'ISK' | 'GTQ' | 'INR' | 'DOP' | 'SGD' | 'PLN' | 'SAR' | 'TTD' | 'ZAR' | 'KYD' | 'HKD' | 'CZK' | 'KRW' | 'JPY' | 'NZD' | 'AED' | 'MAD' | 'TWD' | 'BRL' | 'BWP' | 'NAD' | 'KES' | 'SCR' | 'TRY' | 'SZL' | 'LSL' | 'TZS' | 'UGX' | 'ZMW' | 'ZWG' | 'GHS' | 'NGN' | 'SLE' | 'LRD' | 'XOF' | 'XAF' | 'GEL' | 'IDR' | 'ARS' | 'CRC' | 'HUF' | 'EGP' | 'MYR' | 'VND' | 'PHP' | 'MWK' — The default currency of the event
  - `seller` object — Seller information
    - `name` string, required — The name of the seller
    - `description` string — The description of the seller
    - `image` string — The logo of the seller
    - `documentImage` string — The logo of the seller visible on ticket PDFs
    - `url` string — The url of the seller
    - `supportUrl` string — The support url of the seller
    - `customLogo` string — Custom seller branding logo
    - `defaultLanguage` string — The language of the seller
  - `timezone` string — Timezone of event
  - `location` object — The event's location
    - `locationName` string — The name of the location where the event takes place
    - `locationStreet` string — The street of the location where the event takes place
    - `locationCity` string — The city of the location where the event takes place
    - `locationPostal` string — The postal code of the location where the event takes place
    - `locationCountry` string — The country code of the location where the event takes place
    - `geoCode` object — The geographic code of the event
      - `_id` string, required — The ID of the geo code
      - `lat` number, float, required — Latitude coordinate of the geo code
      - `lng` number, float, required — Longitude coordinate of the geo code
  - `slots` object[] — Time slots of the assigned event day scheme.
    - `_id` string, required — The ID of the time slot.
    - `start` string, required — The start time of the time slot.
    - `amount` integer, required — Maximum amount the time slot could be used.
    - `offers` object — Offers of the slot
      - `allTicketTypesActive` boolean — Whether the all ticket types active.
      - `ticketTypes` object[] — The day scheme offer ticket types.
        - `ticketTypeId` string, required — The ticket type id which could be sold.
        - `active` boolean — Whether the ticket type is selling.
      - `timeSlots` object[] — Time slots overrides.
        - `slotId` string, required — The slotId of the time slot.
        - `enabled` string — Whether the slot is enabled.
        - `amount` number, float — The amount of available tickets of the time slot of the day scheme.
  - `timeSlots` object[] — The time slots for the event
    - `_id` string, required — The ID of the time slot
    - `startTime` object, required — The time of day the time slot starts
      - `hour` integer, required
      - `minute` integer, required
    - `v` number, float, required — The remaining volume of the time slot
    - `categories` object[] — The categories of the time slot
      - `categoryRef` string — The reference of the category of the time slot
      - `v` number, float, required — The remaining volume of the category
    - `ticketTypes` object[] — The ticket types of the time slot
      - `ticketTypeId` string — The ID of the ticket type
      - `v` number, float, required — The remaining volume of the ticket type
    - `availabilityIndicator` 'green' | 'yellow' | 'red' — The availability of the time slot. It shows whether there are tickets available. green = Enough available tickets. yellow = The tickets are almost sold out. red = There are no more available tickets
  - `ticketShopHeaderText` string
  - `tickets` object[] — An array of ticket types of the event
    - `id` string, required — The ID of the ticket type of the event
    - `v` number, float — The remaining volume
    - `name` string, required — The name of the ticket type of the event
    - `price` number, float, required — The price of the ticket type of the event
    - `color` string — The font color of the ticket type of the event
    - `description` string — The description of the ticket type of the event
    - `active` boolean, required — Whether the ticket type of the event is active
    - `categoryRef` string — The reference of the category of the ticket type of the event
    - `requiresPersonalization` boolean — Whether the ticket type of the event needs personalization
    - `sortingKey` number, float — The key to sort the ticket type within the ticket group
    - `enableHardTicketOption` boolean — Whether the ticket type is a hard ticket
    - `forceHardTicketOption` boolean — Whether to force the hard ticket option
    - `maxAmountPerOrder` number, float — Maximum amount per order of the ticket type
    - `minAmountPerOrder` number, float — Minimum amount per order of the ticket type
    - `minAmountPerOrderRule` number, float — Minimum amount of the ticket type, where the minAmountPerOrder goes active
    - `taxRate` number, float — The tax rate of the ticket type of the event
    - `styleOptions` object — Style options of the ticket type
      - `thumbnailImage` string — Thumbnail of the ticket type, which will be displayed on checkout
      - `showAvailable` boolean — Whether to show availability of the ticket type
      - `hiddenInSelectionArea` boolean — Whether to show this ticket in the selection area
    - `ignoreForMaxAmounts` boolean — Do not include tickets if this typw when calculating available amount in categories and event
    - `conditionalAvailability` boolean — Whether rules can be operated on the ticket type
    - `conditionalAvailabilityMode` 'blockAddToCart' | 'blockCheckout' — The conditional availability mode of the ticket type
    - `rules` object[] — An array of rules for the ticket type of the event
      - `_id` string, required — The ID of the ticket type rule
      - `ticketGroup` string, required — The ID of the ticket group to operate the rule on
      - `min` number, float, required — Minimum amount of tickets where the rule is active
      - `max` number, float, required — Maximum amount of tickets where the rule is active
    - `outerChargeFix` number, float — The outer charge fix of the ticket type of the event
    - `innnerChargeFix` number, float — The inner charge fix of the ticket type of the event
    - `dynamicFees` object[] — Dynamic fees of the ticket type
    - `salesStart` object, nullable — A relative date before the end of the event, when the sale of this ticket type starts
      - `target` string, nullable — The target of the relative date
      - `unit` 'hours' | 'days' | 'weeks' | 'months' | 'years', required — The unit in which the offset is specified
      - `offset` integer, required — The offset to the date
    - `salesEnd` object, nullable — A relative date before the end of the event, when the sale of this ticket type ends
      - `target` string, nullable — The target of the relative date
      - `unit` 'hours' | 'days' | 'weeks' | 'months' | 'years', required — The unit in which the offset is specified
      - `offset` integer, required — The offset to the date
    - `subscriptionSettings` object
    - `priceTableTypeId` string
    - `meta` object — Custom key-value data. Metadata is useful for storing additional, structured information on an object.
    - `resellSettings` object — Resell settings.
      - `enabled` 'ENABLED' | 'DISABLED' — Whether secondary market settings enabled.
  - `resell` object — Resell information
    - `saleActive` boolean — Whether the event has buying on the secondary market active.
    - `offerActive` boolean — Whether the event has selling on the secondary market active.
    - `fees` object — Fee information
      - `buyerFeeFix` number, float — The fixed fees charged for each ticket to the buyer.
      - `buyerFeeVar` number, float — The variable fees charged to the buyer.
    - `priceMarkup` number, float — The markup applied to the price of each ticket bought on the secondary market.

## Other responses

- `400` — Bad Request
- `404` — Not Found

---

[API](https://skmtc.net/vivenu/apis/vivenu-api.md) · [All operations](https://skmtc.net/vivenu/apis/vivenu-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/vivenu/vivenu-api/revisions/36be0dca14e7/schema)
