id_region – Region identifier for the business instance.k_business – Business key for the WellnessLiving business.k_staff – Staff key for the staff member whose schedule and profile are being requested.GETTOKEN variable for auth, ensure it is set before sending the request (for example, as a header such as Authorization: Bearer {{TOKEN}} or another scheme defined at the collection level).200 OK response includes (among others) the following main fields:a_class_day – Top-level array of 7 days (1–7), each with:i_day – Day index (e.g., 1 for Monday, depending on business configuration).a_class_period – Array of class period entries for that day, where each entry typically includes:dt_time – Class start time (HH:MM:SS).i_duration – Class duration in seconds.s_title – Class title/name.text_timezone – Time zone of the scheduled time.url_book – Public booking URL for that specific class.a_result_list – Object keyed by k_staff, containing schedule data scoped specifically to that staff member, including its own a_class_day structure mirroring the top-level schedule.a_staff – Staff profile details, such as:a_location_work – Array of location IDs where the staff member works.a_photo – Map keyed by k_staff with photo metadata:a_image – Image details (height, width, URLs, etc.).s_url, url-thumbnail, url-view – Image URLs for the staff member’s photo.html_first, html_last, text_full_name – Staff name fields.html_location_title – Primary location display name.text_business_role – Business role (e.g., instructor, owner).url_schedule – Public schedule URL for the staff member.status – Status of the API operation (e.g., "ok").s_version – Internal version identifier for the response structure.a_class_day and/or a_result_list[].a_class_day to build a weekly schedule view grouped by day.a_staff for displaying staff profile information, primary working locations, and photo.url_book within each class period and url_schedule in the staff profile.curl --location -g --request GET '/v1/staff/view?id_region={{id_region}}&k_business={{k_business}}&k_staff=undefined' \
--header 'Content-Type: text/plain' \
--data-raw ''{}