For the complete documentation index, see llms.txt. This page is also available as Markdown.

Selected custom meal drinks

Selected food and beverages

This endpoint requires the selected_custom_meal_drinks access to be enabled in the Catalyst integration settings.

GET /catalyst/selected_custom_meal_drinks

Returns the selected custom meal drink records for the event. Each record represents a meal or drink that has been assigned to a specific visitor (membership or list entry item) for a specific day.

  • URL: https://api.eventication.com/catalyst/selected_custom_meal_drinks?page=1

  • Page size: 200 objects per request

  • Fields per item:

    • id

    • custom_meal_drink_id — references an item from custom_meal_drinks

    • day — the operation day this selection applies to, as an ISO8601 date (e.g. "2026-07-04")

    • owner_id — the ID of the visitor this selection belongs to

    • owner_type — the type of the visitor: "Membership" or "ListEntryItem"

Response shape:

{
  "data": [
    {
      "id": 501,
      "custom_meal_drink_id": 12,
      "day": "2026-07-04",
      "owner_id": 789,
      "owner_type": "Membership"
    },
    ...
  ],
  "meta": {
    "page": 1,
    "per_page": 200,
    "next_page": 2,
    "prev_page": null
  }
}

Last updated