> 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 # GetCheckoutOptions # Package: ticketing # Namespace: CheckoutService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/events/registration/ticketing/orders/get-checkout-options.md ## Permission Scopes: Events Checkout: SCOPE.EVENTS.EVENTS-CHECKOUT ## Introduction Retrieves checkout details. --- ## REST API ### Schema ``` Method: getCheckoutOptions Description: Retrieves checkout details. URL: https://www.wixapis.com/events/v1/checkout/options Method: GET Return type: GetCheckoutOptionsResponse - name: paymentMethodConfigured | type: boolean | description: Whether any payment method is configured and available for payment. - name: acceptCoupons | type: boolean | description: Whether coupons are accepted at checkout. - name: premiumServices | type: boolean | description: Whether premium services are enabled. Enabled for free if site doesn't sell any paid tickets. Selling tickets for a fee requires a premium feature `"events_sell_tickets"`. - name: paidTickets | type: boolean | description: Whether there are any paid tickets available for sale. - name: acceptGiftCards | type: boolean | description: Whether gift cards are accepted at checkout. ``` ### Examples ### GetCheckoutOptions ```curl ~~~cURL curl -X GET 'https://www.wixapis.com/events/v1/checkout/options' \ -H 'Authorization: ' ~~~ ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.ticketing.CheckoutService.getCheckoutOptions() Description: Retrieves checkout details. Return type: PROMISE - name: paymentMethodConfigured | type: boolean | description: Whether any payment method is configured and available for payment. - name: acceptCoupons | type: boolean | description: Whether coupons are accepted at checkout. - name: premiumServices | type: boolean | description: Whether premium services are enabled. Enabled for free if site doesn't sell any paid tickets. Selling tickets for a fee requires a premium feature `"events_sell_tickets"`. - name: paidTickets | type: boolean | description: Whether there are any paid tickets available for sale. - name: acceptGiftCards | type: boolean | description: Whether gift cards are accepted at checkout. ``` ### Examples ### getCheckoutOptions ```javascript import { orders } from '@wix/events'; async function getCheckoutOptions() { const response = await orders.getCheckoutOptions(); }; ``` ### getCheckoutOptions (with elevated permissions) ```javascript import { orders } from '@wix/events'; import { auth } from '@wix/essentials'; async function myGetCheckoutOptionsMethod() { const elevatedGetCheckoutOptions = auth.elevate(orders.getCheckoutOptions); const response = await elevatedGetCheckoutOptions(); } ``` ### getCheckoutOptions (self-hosted) Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md). ```javascript import { createClient } from '@wix/sdk'; import { orders } from '@wix/events'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { orders }, // Include the auth strategy and host as relevant }); async function getCheckoutOptions() { const response = await myWixClient.orders.getCheckoutOptions(); }; ``` ---