WellnessLiving API (UAT) - v1.2026-02
  1. login
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
      GET
    • /v1/login/search/settings
      GET
    • /v1/login/search/settings
      PUT
    • /v1/login/search/staff-app/list
      GET
  • 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
    • /v1/staff/view
  • user
    • /v1/user
  • visit
    • /v1/visit/status
  1. login

/v1/login/search/staff-app/list

GET
/v1/login/search/staff-app/list

/v1/login/search/staff-app/list#

Purpose#

Searches for clients/members that can be accessed from the Staff App. Returns a list of matching clients along with basic profile and contact information. The results can be used to select a client for login, booking, or profile-related actions in the staff-facing application.

Authentication#

This endpoint requires a valid authenticated context (e.g., session/cookie or token) as configured for this environment/collection. Ensure the request is sent with the same auth mechanism used for other authenticated UAT wellnessliving.io API calls (for example, a bearer token or proxy token set via {{TOKEN}} or related auth variables at the collection/environment level).
Note: This request currently inherits/uses authentication from its parent collection/folder. Verify that auth is correctly configured there before using this endpoint.

Query Parameters#

id_region (integer, required)
Numeric region identifier that scopes the search to a specific deployment/region.
Example: 2
k_business (integer/string, required)
Business key for the WellnessLiving business whose clients should be searched.
Example: 49197

Successful Response (200 OK)#

On success, the endpoint returns a JSON object with:
a_list (array) – List of client entries. Each entry can contain:
uid – Internal client/member identifier.
text_title – Display name for the client (e.g., full name or username).
text_member – Member/client number or code.
text_mail – Primary email address.
text_phone – Primary phone number.
text_name_first – First name.
text_name_last – Last name.
can_add (boolean) – Indicates whether new clients can be added in the current context.
status (string) – Request status (e.g., "ok" for a successful response).
s_version (string) – Internal version/token for this response.
__a_message (array) – Internal/localized messages and labels related to the staff app login/search experience.
**Example 200 Response (truncated for brevity):
{
  "a_list": [
    {
      "text_mail": "",
      "text_member": "",
      "text_name_first": "",
      "text_name_last": "",
      "text_phone": "",
      "text_title": "Recently added",
      "uid": "-2"
    },
    {
      "text_mail": "vptsurkanova@gmail.com",
      "text_member": "975881857",
      "text_name_first": "Ihor",
      "text_name_last": "Shein",
      "text_phone": "",
      "text_title": "Ihor Shein",
      "uid": "2434748"
    }
  ],
  "can_add": true,
  "status": "ok",
  "s_version": "444085",
  "__a_message": [
    "Recently Added|rs.login.search",
    "..."
  ]
}

Request

Query Params

Responses

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET '/v1/login/search/staff-app/list?id_region={{id_region}}&k_business={{k_business}}' \
--header 'Content-Type: text/plain' \
--data-raw ''
Response Response Example
{}
Modified at 2026-02-26 17:13:05
Previous
/v1/login/search/settings
Next
/v1/member/info
Built with