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

Custom meal drinks

Food and beverages

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

GET /catalyst/custom_meal_drinks

Returns the custom meal drinks (meals and drinks) configured for the event.

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

  • Page size: 200 objects per request

  • Fields per item:

    • id

    • meal_category — one of meal_breakfast, meal_lunch, meal_dinner, meal_midnight_snack, drink

    • Localized names (dynamic):

      • name_<locale> — e.g. name_en, name_fr, name_nl

Locales are included when the corresponding database columns exist. This makes it forward-compatible when adding more languages later.

Example item:

{
  "id": 12,
  "meal_category": "meal_lunch",
  "name_en": "Veggie burger",
  "name_fr": "Burger végétarien",
  "name_nl": "Veggie burger"
}

Response shape:

Last updated