Skip to content

List Clinics for Patient

Request

Get all clinics a user is a patient of

Security
sessionToken
Path
userIdstring(Tidepool User ID)^([0-9a-f]{10}|[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-...read-onlyrequired

String representation of a Tidepool User ID. Old style IDs are 10-digit strings consisting of only hexadeximcal digits. New style IDs are 36-digit UUID v4

Query
offsetinteger, >= 0
limitinteger, >= 1
Default:10
curl -i -X GET \
  'https://tidepool.redocly.app/_mock/reference/clinic.v1/v1/patients/{userId}/clinics?offset=0&limit=10' \
  -H 'x-tidepool-session-token: YOUR_API_KEY_HERE'

Responses

OK

Bodyapplication/json
Array [
patientobject(Patient)required
clinicobject(Clinic)required

Clinic

]
Response
[ { "patient": {}, "clinic": {} } ]