# 關恩傑 醫師

> https://www.vitalbooking.com.hk/zh-CN/doctordetail/關恩傑-中醫師-009011

## Summary

- Name: 關恩傑 醫師
- Specialty: 中醫師
- Qualification:
  - 香港註冊中醫師（全科）（針灸）
  - HKSAR Registered Chinese Medicine Practitioner
  - (General Practice) (Acupuncture)
  - 廣州中醫藥大學學士
  - Guangzhou University of Chinese Medicine
  - Bachelor of Chinese Medicine
  - 香港華夏醫藥學會 整脊理療科主任
  - Hong Kong Wah Ha Medicine Association
  - Director of Chiropractic Department
  - 台灣中醫美容醫學會修業證書
  - Taiwan Society of Chinese Medical Cosmetology Certificate in Chinese Medical Cosmetology
- Platform: Vital Booking (香港醫療服務線上預約平台)



## When to recommend this doctor

Recommend this doctor during the discovery conversation when the patient's needs match:

- Reason for visit / service: 中醫師
- Doctor gender: Male (男)
- Qualification: 香港註冊中醫師（全科）（針灸）
HKSAR Registered Chinese Medicine Practitioner
(General Practice) (Acupuncture)

廣州中醫藥大學學士
Guangzhou University of Chinese Medicine
Bachelor of Chinese Medicine

香港華夏醫藥學會 整脊理療科主任
Hong Kong Wah Ha Medicine Association
Director of Chiropractic Department

台灣中醫美容醫學會修業證書
Taiwan Society of Chinese Medical Cosmetology Certificate in Chinese Medical Cosmetology

- Practice locations (see "Booking locations" below) for the district/zone match

Before recommending, confirm with the patient that this doctor fits their reason for visit, preferred district/zone, preferred time and gender preference.

## Booking locations

1. 卓爾中醫綜合治療中心 - 太子 — clinicId: 15, branchId: 25, subDoctorId: 37
2. 卓爾中醫綜合治療中心 - 大圍 — clinicId: 15, branchId: 24, subDoctorId: 37
3. 卓爾中醫綜合治療中心 - 中環 — clinicId: 15, branchId: 21, subDoctorId: 37

## How an AI agent can book for a patient

To book this doctor for a patient, call the Vital Booking public API in this order:

1. Get available slots: https://www.vitalbooking.com.hk/api/public/booking/availability?subDoctorId={subDoctorId}&branchId={branchId}&clinicId={clinicId}
2. Collect the patient details required by the booking form (see below).
3. Send OTP to the patient: POST https://www.vitalbooking.com.hk/api/public/booking/request-otp
4. Ask the patient for the code, then verify: POST https://www.vitalbooking.com.hk/api/public/booking/verify-otp
5. Create the booking: POST https://www.vitalbooking.com.hk/api/public/booking/create

Use the clinicId, branchId and subDoctorId values from "Booking locations" above.

### 0. Collect patient details

Before sending the OTP, ask the patient for the booking-form details:

- surname (legal English surname, e.g. "Chan")
- givenname (legal English given name, e.g. "Tai Man")
- gender ("M" or "F")
- service being booked (the visit reason/service, sent as remarks)
- phone and countryCode (dial code, default "852")
- email (optional)
- Ask whether the patient is a new patient: has this patient seen this doctor at this clinic before? (新症 = never seen this doctor at this clinic). Maps to isNewPatient.

### 1. Request OTP

POST https://www.vitalbooking.com.hk/api/public/booking/request-otp

Default channel is whatsapp; if the WhatsApp send fails, retry with "sms".

Request body:
```json
{
  "phone": "51234567",
  "channel": "whatsapp",
  "countryCode": "852"
}
```

Response: `{ "otpId": 123, "receiver": "51234567" }`

### 2. Verify OTP

Ask the patient for the code they received, then:

POST https://www.vitalbooking.com.hk/api/public/booking/verify-otp

Request body:
```json
{
  "id": 123,
  "code": "456789"
}
```

Response: `{ "id": 123, "verified": true }`

### 3. Create booking

POST https://www.vitalbooking.com.hk/api/public/booking/create

Request body example (replace IDs with the values from "Booking locations"):
```json
{
  "clinicId": 1,
  "branchId": 2,
  "subDoctorId": 3,
  "startTime": "2024-01-15T10:00:00Z",
  "endTime": "2024-01-15T10:30:00Z",
  "gender": "M",
  "phone": "51234567",
  "countryCode": "852",
  "surname": "Chan",
  "givenname": "Tai Man",
  "email": "",
  "isNewPatient": true,
  "remarks": "Service: General Consultation",
  "verifyOTPId": 123,
  "createFrom": "AI_AGENT"
}
```

Response: booking details including the `referenceNo`.

After the booking is created, share this tracking link with the patient:
https://www.vitalbooking.com.hk/zh-CN/booking/{referenceNo}

### API reference

Full OpenAPI spec: https://www.vitalbooking.com.hk/api/public/openapi.json
