WellnessLiving API (v1)
  1. Schedule
WellnessLiving API (v1)
  • WellnessLiving API
  • Auth
    • Authentication
  • Appointment
    • /v1/appointment/book/asset/list
    • /v1/appointment/book/asset/category
    • /v1/appointment/book/service/list
    • /v1/appointment/book/staff/list
  • Business
    • /v1/business
    • /v1/business/skin
  • Classes
    • /v1/classes/list
    • /v1/classes/view/element
  • Collector
    • /v1/collector/debt/list
    • /v1/collector/debt/pay
    • /v1/collector/debt/transaction
  • Drive
    • /v1/drive/product/image/upload
  • Event
    • /v1/event/book/list
    • /v1/event/list
    • /v1/event/book/view/element
  • Location
    • /v1/location/list
    • /v1/location/view
  • Login
    • /v1/login/search/settings
    • /v1/login/search/staff-app/list
    • /v1/login/search/settings
  • Member
    • /v1/member/info
  • Profile
    • /v1/profile/purchase/list
    • /v1/profile/contract
    • /v1/profile/purchase/list/element
  • Promotion
    • /v1/promotion/list
    • /v1/promotion
  • Purchase
    • /v1/purchase/receipt
  • Report
    • /v1/report/data
    • /v1/report/query
  • Schedule
    • /v1/schedule/class/list
      GET
    • /v1/schedule/page/list
      GET
    • /v1/schedule/tab
      GET
    • /v1/schedule/class/view
      GET
    • /v1/schedule/page/element
      GET
  • Shop
    • /v1/shop/category
  • Staff
    • /v1/staff/list
    • /v1/staff/view
  • User
    • /v1/user
  • Visit
    • /v1/visit/status
  1. Schedule

/v1/schedule/tab

Testing
GET
https://uat-api.wellnessliving.io/v1/schedule/tab
This endpoint retrieves schedule information for a specific region and business.

Request#

Parameters
id_region (number): The ID of the region for which the schedule is being retrieved.
k_business (number): The ID of the business for which the schedule is being retrieved.

Response#

Status: 200
Content-Type: application/json
The response is a JSON object with the following schema:
a_tab (array): An array of tab objects containing schedule information.
id_class_tab_object (number): The ID of the tab object.
id_class_tab_system (number): The ID of the tab system.
k_class_tab (string): The class tab key.
k_resource_type (string): The resource type key.
k_service_category (string): The service category key.
s_title (string): The title of the tab.
k_id (number): The ID of the tab.
i_order (number): The order of the tab.
url_origin (string): The origin URL.
status (string): The status of the response.
s_version (string): The version of the response.
__a_message (array): An array of messages.
{
  "type": "object",
  "properties": {
    "a_tab": {
      "type": "array",
      "description": "An array of class tab objects.",
      "items": {
        "type": "object",
        "properties": {
          "id_class_tab_object": {
            "type": "integer",
            "description": "The object ID of the class tab."
          },
          "id_class_tab_system": {
            "type": ["integer", "null"],
            "description": "The system ID of the class tab, if applicable."
          },
          "k_class_tab": {
            "type": ["string", "null"],
            "description": "The key identifier for the class tab, if available."
          },
          "k_resource_type": {
            "type": ["string", "null"],
            "description": "The resource type key associated with the tab, if applicable."
          },
          "k_service_category": {
            "type": ["string", "null"],
            "description": "The service category key associated with the tab, if applicable."
          },
          "s_title": {
            "type": "string",
            "description": "The title of the class tab."
          },
          "k_id": {
            "type": "integer",
            "description": "The unique identifier for the tab."
          },
          "i_order": {
            "type": "integer",
            "description": "The order in which the tab appears."
          },
          "url_origin": {
            "type": "string",
            "format": "uri",
            "description": "The URL associated with this tab."
          }
        },
        "required": [
          "id_class_tab_object",
          "s_title",
          "k_id",
          "i_order",
          "url_origin"
        ]
      }
    },
    "status": {
      "type": "string",
      "enum": ["ok"],
      "description": "Status of the response."
    },
    "s_version": {
      "type": "string",
      "description": "Version identifier for the response format."
    },
    "__a_message": {
      "type": "array",
      "description": "Additional messages related to the response.",
      "items": {
        "type": "string"
      }
    }
  },
  "required": ["a_tab", "status", "s_version"]
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params
id_region
string 
required
Example:
2
k_business
string 
required
Example:
49197

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://uat-api.wellnessliving.io/v1/schedule/tab?id_region=2&k_business=49197' \
--header 'Content-Type: text/plain' \
--data-raw ''

Responses

🟢200Success
application/json
Body
object {0}
Example
{}
Previous
/v1/schedule/page/list
Next
/v1/schedule/class/view