WellnessLiving API (UAT) - v1.2026-02
  1. staff
WellnessLiving API (UAT) - v1.2026-02
  • WellnessLiving API - [Feb-2026]
  • Auth
    • Authentication
  • appointment
    • /v1/appointment/book/asset/category
    • /v1/appointment/book/asset/list
    • /v1/appointment/book/asset/service
    • /v1/appointment/book/finish
    • /v1/appointment/book/finish
    • /v1/appointment/book/payment/paymentPost
    • /v1/appointment/book/product
    • /v1/appointment/book/schedule/calendar
    • /v1/appointment/book/schedule/day-time
    • /v1/appointment/book/service/category
    • /v1/appointment/book/service/list
    • /v1/appointment/book/staff/list
  • book-process
    • /v1/book/process/info
    • /v1/book/process/payment
    • /v1/book/process/purchase
    • /v1/book/process/purchase/element/list
  • business-data
    • /v1/business
    • /v1/business/franchise/location
    • /v1/business/skin
  • catalog
    • /v1/catalog/list
    • /v1/catalog/staff/catalog/list
  • classes
    • /v1/classes/list
    • /v1/classes/promotion
    • /v1/classes/view/element
  • collector-debt
    • /v1/collector/debt/list
    • /v1/collector/debt/pay
    • /v1/collector/debt/transaction
  • drive
    • /v1/drive/product/image/upload
  • ecommerce
    • /v1/ecommerce/order/sync
  • event
    • /v1/event/book/list
    • /v1/event/book/view/element
    • /v1/event/list
  • lead
    • /v1/lead/info
    • /v1/lead/info
  • location
    • /v1/location/list
    • /v1/location/view
  • login
    • /v1/login/attendance/list
    • /v1/login/search/settings
    • /v1/login/search/settings
    • /v1/login/search/staff-app/list
  • member
    • /v1/member/info
  • profile
    • /v1/profile/contract
    • /v1/profile/create
    • /v1/profile/fields
    • /v1/profile/purchase/list
    • /v1/profile/purchase/list/element
  • promotion
    • /v1/promotion
    • /v1/promotion/list
  • purchase
    • /v1/purchase/receipt
  • report
    • /v1/report/data
    • /v1/report/query
  • report-dev
    • /v1/report/customization-form
    • /v1/report/filter-info
  • schedule
    • /v1/schedule/class/list
    • /v1/schedule/class/view
    • /v1/schedule/class/view
    • /v1/schedule/page/element
    • /v1/schedule/page/list
    • /v1/schedule/tab
  • shop
    • /v1/shop/category
  • staff
    • /v1/staff/list
      GET
    • /v1/staff/view
      GET
  • user
    • /v1/user
  • visit
    • /v1/visit/status
  1. staff

/v1/staff/view

GET
/v1/staff/view
Retrieves the weekly class schedule and profile details for a specific staff member.

Overview#

This request returns:
The staff member’s weekly class schedule
Per-day class periods with start times, durations, titles, and booking URLs
Staff profile information, including locations and photo metadata
It uses the following key query parameters:
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.

Request#

Method: GET
URL (example):
Authentication:
If this collection/environment uses a TOKEN 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).

Key Response Fields#

The successful 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.
Other metadata fields such as:
status – Status of the API operation (e.g., "ok").
s_version – Internal version identifier for the response structure.

Usage Notes#

Use a_class_day and/or a_result_list[].a_class_day to build a weekly schedule view grouped by day.
Use a_staff for displaying staff profile information, primary working locations, and photo.
Booking and schedule links can be taken from url_book within each class period and url_schedule in the staff profile.

Request

Query Params

Responses

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
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 ''
Response Response Example
{}
Modified at 2026-02-26 17:13:05
Previous
/v1/staff/list
Next
/v1/user
Built with