WellnessLiving API (UAT) - v1.2026-02
  1. lead
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
      GET
    • /v1/lead/info
      POST
  • 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
    • /v1/staff/view
  • user
    • /v1/user
  • visit
    • /v1/visit/status
  1. lead

/v1/lead/info

GET
/v1/lead/info
Retrieves configuration and display metadata for the public lead capture form for a specific business and region.
This endpoint is typically used by client applications (e.g., websites or landing pages) to dynamically build a "Capture Lead" form, including which fields to show, which are required, and the associated styling.

HTTP#

Method: GET
Path: /v1/lead/info

Query Parameters#

id_region (required, integer)
The internal region identifier. Determines regional settings that may affect the form configuration.
k_business (required, string or integer)
The business key/ID for which the lead capture form configuration should be returned.

Authentication#

Expects a valid WellnessLiving UAT API authentication context.
Typically secured via the same auth mechanism used elsewhere in this collection (e.g., header-based token).
Ensure the appropriate authorization header (such as Authorization: Bearer {{TOKEN}} or equivalent) is present at the collection/folder/request level, as configured in this workspace.

Successful Response (200 OK)#

A successful response includes (non-exhaustive):
a_field_list: Array of field definitions for the lead form.
Each item contains:
text_field: Display name/label (e.g., "First name", "Last name", "Email", "Cell phone").
k_field: Internal field key.
is_require: Boolean indicating whether the field is required.
id_field_general, id_field_type, and a_data with additional metadata.
a_skin: Object describing UI/skin configuration for the form, including:
Background, fonts, submit button styles, header text, visibility flags (e.g., logo), and other styling data.
can_use_free_purchase: Boolean indicating whether free purchase options are allowed.
url_captcha: URL for captcha integration (if used).
status: Overall status string (e.g., "ok" on success).
s_version: Version identifier for this configuration payload.
__a_message: Internal list of field-related system identifiers.

Usage Notes#

Use a_field_list to drive which inputs are rendered, and which are required, on the lead capture UI.
Use a_skin to apply the server-defined styling so the form matches the configured theme.
This endpoint is read-only and does not create or update leads; it only returns configuration/metadata for building the lead capture form.

Request

Query Params

Responses

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET '/v1/lead/info?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/event/list
Next
/v1/lead/info
Built with