> 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: Delivery Method ## Article: Delivery Method ## Article Link: https://dev.wix.com/docs/sdk/host-modules/site/events/wix-stores/delivery-method.md ## Article Content: # Delivery Method Triggered when the user adds personal information and clicks to advance to the next step in the checkout flow. ### Properties |Name|Type|Description| |---|---|---| |`eventCategory`|text|Wix category.| |`eventAction`|text|More detailed event name.| |`eventLabel`|text|Wix App name, such as Stores or Bookings.| |`contents`|array|All purchased products.| |`contents.id`|text|Product ID.| |`contents.name`|text|Product name.| |`userId`|text|User ID.| ### Example ```JSON { "eventCategory": "Enhanced Ecommerce - Stores", "eventAction": "Add Delivery Method", "eventLabel": "stores", "contents": [{ "id": "T123", "name": "Running shoes" }] } ```