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/settings

GET
/v1/login/search/settings
Retrieves login search settings for a specific business and region.

Purpose#

Use this endpoint to determine how the system should behave when searching for clients during login/check-in flows for a given region and business.

Method & URL#

Method: GET
Path: /v1/login/search/settings

Query Parameters#

id_region (integer, required)
Identifies the geographic or logical region the settings apply to.
Example: 2.
k_business (integer, required)
Unique identifier of the business.
Example: 49197.

Authentication#

Expects a valid authentication context (e.g., bearer/session token) to be present.
The request uses the TOKEN variable; ensure it is set appropriately in your active environment or inherited auth.
If authentication is missing or invalid, the server may return a 4xx error (such as 401 Unauthorized or 403 Forbidden).

Successful Response (200 OK)#

A successful call returns JSON with the following fields (example shown from the active response):
{
  "is_auto_check_in": null,
  "is_franchisee_search_wide": false,
  "is_inactive": false,
  "is_show_client_id": false,
  "is_show_email": true,
  "is_show_phone": false,
  "status": "ok",
  "s_version": "444085"
}

Field meanings#

is_auto_check_in (boolean or null)
Indicates whether automatic check-in during login/search is enabled.
true – auto check-in is enabled.
false – auto check-in is disabled.
null – not configured or using a system default.
is_franchisee_search_wide (boolean)
Controls whether the client search should span multiple franchise locations.
true – search is performed across a wider/franchise-wide scope.
false – search is restricted to the current business/region scope.
is_inactive (boolean)
Indicates whether these login search settings are currently inactive.
true – settings are inactive (may not be applied).
false – settings are active.
is_show_client_id (boolean)
Determines whether the client ID should be visible in the login/search results UI.
true – show the client ID.
false – hide the client ID.
is_show_email (boolean)
Determines whether the client email address is shown in search results.
true – show email.
false – hide email.
is_show_phone (boolean)
Determines whether the client phone number is shown in search results.
true – show phone.
false – hide phone.
status (string)
High-level status of the API call.
For successful requests, typically "ok".
s_version (string)
Internal version or configuration identifier for these settings.
Useful for debugging, auditing, or cache/version tracking.

Notes#

This endpoint is read-only; it does not modify any settings.
Use it before login/search operations if you need to adjust UI or behavior based on the current configuration.

Request

Query Params

Responses

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET '/v1/login/search/settings?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/attendance/list
Next
/v1/login/search/settings
Built with