Selected custom meal drinks
Selected food and beverages
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=1Page size: 200 objects per request
Fields per item:
idcustom_meal_drink_id— references an item from custom_meal_drinksday— 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 toowner_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