id_region (integer, required): Regional identifier for the deployment/cluster (e.g., 2). Helps route the request to the correct regional backend.k_business (integer/string, required): Unique business ID within WellnessLiving (e.g., 49197). Determines which business account the booking context belongs to.k_location (integer/string, required): Location (site/studio) key within the business (e.g., 315968). Filters availability to a specific physical or virtual location.dt_start (datetime string, required): Requested appointment start time in YYYY-MM-DD HH:MM:SS format (e.g., 2025-09-01 10:00:00). Assumed to be in the business-local timezone unless otherwise documented.k_service (integer/string, required): Service key for the asset-based service being booked (e.g., 235266). Identifies which service’s asset configuration and availability to load.200 OK with a JSON body similar to:{
"a_resource_busy": [],
"a_resource_type": [],
"can_book_unavailable_assets": null,
"status": "ok",
"s_version": "444085"
}
a_resource_busy (array): List of resources that are already booked/unavailable for the specified time. Empty array indicates no busy resources were returned.a_resource_type (array): List of asset/resource types relevant to the requested service. Empty array indicates no additional resource type metadata was returned for this call.can_book_unavailable_assets (boolean|null): Flag indicating whether the system allows booking assets even when they appear unavailable. null implies the value is not explicitly provided or falls back to default behavior.status (string): High-level call status. Value "ok" indicates the request was processed successfully.s_version (string): Internal version or schema identifier for the response payload (e.g., for debugging or change tracking).{{TOKEN}} variable configuration for auth. Do not modify auth here; update the shared auth/token flow if changes are needed.curl --location -g --request GET '/v1/appointment/book/asset/service?id_region={{id_region}}&k_business={{k_business}}&k_location={{k_location}}&dt_start=2025-09-01 10:00:00&k_service=undefined' \
--header 'Content-Type: text/plain' \
--data-raw ''{}