# Patient Dashboard URL: https://developers.vsee.io/use-cases/patient-dashboard Log patient in and take them to VSee Clinic's patient dashboard where they can manage appointments, join video calls, and view visit history. ## Step 1: Obtain patient access token POST /users/sso (auth: API Key + Secret) Call SSO with patient details (type=200). Use ?fields=vsee to include VSee ID and token in the response. headers: - X-ApiKey (required) — API Key - X-ApiSecret (required) — API Secret - X-AccountCode (required) — Account code queryParams: - fields — Set to 'vsee' to include VSee ID and token bodyFields: - first_name (required) — Patient's first name - last_name (required) — Patient's last name - type (required) — User type: 200 = Patient - email — Patient email address - code (required) — Unique patient identifier on your end (max 128 chars) ## Step 2: Redirect to patient dashboard Redirect: https://{your_clinic}.vseepreview.com/auth?sso_token={sso_token}&next=/u/{room_slug} Redirect the patient's browser to the VSee Clinic dashboard.