POST/v1/appointment/book/finishid_region (required, integer): Region identifier for the business (e.g., 2).k_business (required, string): WellnessLiving business key (e.g., 49197).k_location (required, string): Location key where the appointment is being booked (e.g., 315968).uid (required, string): Customer/user identifier in WellnessLiving (e.g., 2720946).{
"a_book_data": {
"k_business": "49197",
"k_location": "315968",
"uid": "2720946",
"k_service": "235266",
"dt_date": "2025-09-02 01:00:00",
"k_timezone": "4",
"k_id": "",
"id_purchase_item": "1",
"id_class_tab": "3",
"id_mode": "0"
},
"is_try": "1"
}
a_book_data objectk_business: Business key, must match the k_business query parameter.k_location: Location key, should match k_location in the query string.uid: User ID of the client making the booking, should match the uid query parameter.k_service: The service key being booked.dt_date: Start date/time of the appointment in YYYY-MM-DD HH:mm:ss format.k_timezone: Timezone identifier used by WellnessLiving.k_id: Optional existing appointment/booking key (empty string when creating a new appointment).id_purchase_item: Purchase option/item identifier associated with this booking.id_class_tab: Class/service tab identifier for categorizing the service.id_mode: Booking mode flag (0 = standard booking; other modes may be used by the platform).is_try flagis_try: When set to 1, indicates a trial/validation mode for the booking (behavior may differ from production booking flows). A value of 0 or omission may perform a normal booking, depending on backend configuration.TOKEN variable (e.g., via headers configured at the collection or folder level). This request assumes a valid auth token is already applied and does not add auth headers directly here.curl --location -g --request POST '/v1/appointment/book/finish?id_region={{id_region}}&k_business={{k_business}}&k_location={{k_location}}&uid={{uid}}' \
--header 'Content-Type: text/plain' \
--data-raw '{"a_book_data":{"k_business":"{{k_business}}","k_location":"{{k_location}}","uid":"{{uid}}","k_service":"","dt_date":"2025-09-02 01:00:00","k_timezone":"4","k_id":"","id_purchase_item":"1","id_class_tab":"3"},"id_mode":"6","is_try":"1"}'{}