# Provider Dashboard URL: https://developers.vsee.io/use-cases/provider-dashboard Log a provider into VSee Clinic's provider dashboard for telehealth functionality — manage queue, accept visits, start video calls, view patient records. ## Step 1: Obtain provider access token POST /users/sso (auth: API Key + Secret) Call SSO with provider details (type=400). Use ?fields=vsee to include VSee ID and token. 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) — Provider's first name - last_name (required) — Provider's last name - type (required) — User type: 400 = Provider - email — Provider email address - code (required) — Unique provider identifier on your end - subtype — Provider subtype (e.g., 482 = Doctor, 470 = CSR) ## Step 2: Redirect to provider dashboard Redirect: https://{your_clinic}.vseepreview.com/auth?sso_token={sso_token}&next=/providers/dashboard Redirect the provider to their dashboard.