> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Resource: Events Settings # Type: Events Settings Object # Link: https://dev.wix.com/docs/api-reference/business-solutions/events/event-management/events-settings/events-settings-object.md ## Description: Events Settings reads the settings and state of a site's [Wix Events & Tickets](https://www.wix.com/app-market/web-solution/events) app. ## Schema: ```json Type: Events Settings Object | type: EventsSettings Description: Events Settings reads the settings and state of a site's [Wix Events & Tickets](https://www.wix.com/app-market/web-solution/events) app. - name: id | type: string | description: Events Settings ID. - name: value | type: string | description: - name: createdDate | type: string | description: Date and time the Events Settings were created. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: updatedDate | type: string | description: Date and time the Events Settings were last updated. - name: revision | type: string | description: Revision number, which increments by 1 each time the Events Settings are updated. To prevent conflicting changes, the current revision must be passed when updating the Events Settings. - name: value | type: string | description: - name: siteInfo | type: SiteInfo | description: Site information including locale, language, and available premium features. - name: locale | type: string | description: Site locale in IETF BCP 47 language tag format. For example, `en-US` for U.S. English. - name: language | type: string | description: Site language in ISO 639-1 alpha-2 format. For example, `en`. - name: premiumFeatures | type: Array | description: Premium features available to the site. These features control access to advanced events capabilities. Use this array to determine which functionality to enable in your integration. For example, check for `SELL_TICKETS` before showing payment options. enum: SELL_TICKETS, INCLUDE_URL_IN_EMAIL, HIDE_FOOTER_IN_EMAIL - name: eventsInfo | type: EventsInfo | description: Global information about the site's events, including whether any events have been created and current ticket sales status. - name: firstEventCreated | type: boolean | description: Whether the site has created its first event. - name: value | type: boolean | description: - name: sellingTickets | type: boolean | description: Whether any events on the site sell tickets, including both free and paid tickets. - name: sellingPaidTickets | type: boolean | description: Whether any events on the site sell paid tickets specifically. Requires both ticket definitions with non-zero prices and the `SELL_TICKETS` premium feature. - name: serviceFeeSettings | type: ServiceFeeSettings | description: Settings for Wix service fees applied to paid ticket sales. - name: serviceFeeEnabled | type: boolean | description: Whether Wix service fees are applied to paid ticket sales. - name: paymentSettings | type: PaymentSettings | description: Payment configuration including available payment methods, coupon acceptance, and delayed capture settings. - name: ticketSalesEnabled | type: boolean | description: Whether ticket sales are enabled for the site. Free ticket sales are always available; paid ticket sales require the `SELL_TICKETS` premium feature and configured payment providers. - name: activePaymentMethods | type: Array | description: Payment methods currently available for ticket checkout. Automatically populated based on the site's payment provider configuration. Common methods include credit cards, PayPal, and digital wallets. - name: methodId | type: string | description: Payment method identifier indicating the type of payment accepted. For example, `creditCard`, `payPal`, `applePay`, or `googlePay`. Use this to determine which payment options to display in checkout. - name: couponsAccepted | type: boolean | description: Whether discount coupons can be used during ticket checkout. Automatically enabled when at least one coupon exists on the site. - name: giftCardsAccepted | type: boolean | description: Whether gift cards can be used during ticket checkout. Requires gift card functionality to be enabled at the site level. - name: delayedPaymentCaptureSettings | type: DelayedPaymentCaptureSettings | description: Configuration for delayed payment capture, allowing payments to be authorized at purchase but captured later. This setting applies to all events on the site and can be updated through the API. - name: enabled | type: boolean | description: Whether delayed payment capture is enabled for all ticket sales on the site. When enabled, payments are authorized at purchase but captured later. ```