GEThttps://uat-api.wellnessliving.io/v1/event/listAuthorization header using the {{TOKEN}} variable configured in your workspace.The exact scheme (Bearer vs. custom token string) depends on your UAT auth setup, but the header must include {{TOKEN}}.
| Name | Type | Required | Description |
|---|---|---|---|
id_region | integer | Yes | Region identifier used to scope which events are returned. |
k_business | integer/string | Yes | Business key (WellnessLiving BID) whose events you want to list. |
?id_region=2&k_business=49197
status — API call status; "ok" on success.a_enrollment_block_list — Map of enrollment block IDs to labels (e.g., "Non Block Event").a_event_list — Array of event objects.a_event_list may include (non‑exhaustive):text_title — Event title (e.g., "Non Block Event").a_schedule[] — Schedule entries for the event, including:a_day — Days of week for the event.a_staff_member[] — List of staff members (names, roles, emails, IDs).dl_start, dl_end — Start/end dates for the schedule.text_location, text_room, text_time — Human‑readable location, room, and time.m_price_min, m_price_max — Minimum and maximum price for a single session.m_price_total, m_price_total_early — Total price and early‑bird pricing (if applicable).is_bookable — Whether the event can currently be booked.is_available, is_full, is_closed — Additional availability flags.is_online, is_virtual, is_online_private — Online/virtual event indicators.url_book — Booking URL that can be used in client‑facing flows.k_class, k_location, k_class_period, k_enrollment_block, html_reason, xml_description) provide IDs and descriptions used elsewhere in the WellnessLiving platform.id_region and k_business together to ensure the correct subset of events is returned for the business.is_bookable and is_available in combination with url_book to determine whether to show a “Book” CTA in your UI.a_schedule[] to display dates, times, locations, and staff for each event.curl --location -g --request GET '/v1/event/list?id_region={{id_region}}&k_business={{k_business}}' \
--header 'Content-Type: text/plain' \
--data-raw ''{}