> 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 # Method name: checkout(eventId: string, options: CheckoutOptionsForRequest) # Method package: wixEventsV2 # Method menu location: wixEventsV2 --> orders --> checkout # Method Link: https://dev.wix.com/docs/velo/apis/wix-events-v2/orders/checkout.md # Method Description: Checkouts the reserved tickets. Creates an order and associates it with a site visitor contact. Guest details are received from the [Registration Form](https://www.wix.com/velo/reference/wix-events-v2/forms/introduction) input fields. There is a possibility to use a separate ready-made Wix checkout form where the user will be redirected from your non-Wix site or a custom ticket picker created with Velo. To build the checkout form path, get your event base URL by using the [`getEvent()`](https://www.wix.com/velo/reference/wix-events-backend/wixevents/getevent) function and add the following path: `/{{EVENT_PAGE_SLUG}}/{{SLUG}}/ticket-form?reservationId={{YOUR_RESERVATION_ID}}` Example: `https://johndoe.wixsite.com/weddings/event-details/doe-wedding/ticket-form?reservationId=2be6d34a-2a1e-459f-897b-b4a66e73f69a` # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## checkout example ```javascript import { orders } from 'wix-events.v2'; async function checkout(eventId, options) { try { const result = await orders.checkout(eventId, options); return result; } catch (error) { console.error(error); // Handle the error } } ``` ## checkout example for exporting from backend code ```javascript import { orders } from 'wix-events.v2'; import { webMethod, Permissions } from 'wix-web-module'; export const checkout = webMethod( Permissions.Anyone, async (eventId, options) => { try { const result = await orders.checkout(eventId, options); return result; } catch (error) { console.error(error); // Handle the error } } ); ``` ---