GET

Get Checkout Options


Returns checkout meta data used in checkout UX.

Permissions
Manage Events - all permissions
Manage Orders
Learn more about app permissions.
Endpoint
GET
https://www.wixapis.com/events/v1/checkout/options

Request
This endpoint does not take any parameters.
Response Object
paymentMethodConfiguredboolean

Whether any payment method is configured and available for payment.


acceptCouponsboolean

Whether coupons are accepted at checkout.


premiumServicesboolean

Whether premium services are enabled. Enabled for free if site does not sell any paid tickets. Selling tickets for a fee requires a premium feature "events_sell_tickets".


paidTicketsboolean

Whether there are any paid tickets available for sale.


acceptGiftCardsboolean

Whether gift cards are accepted at checkout.

Get Checkout Options Example 1
Request
cURL
curl -X GET 'https://www.wixapis.com/events/v1/checkout/options' \ -H 'Authorization: <AUTH TOKEN>'
Response
JSON
{ "paymentMethodConfigured": true, "acceptCoupons": true, "premiumServices": true, "paidTickets": true }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?