Web service that stores information about clinics, clinicians and their patients
- Create Clinician
Clinics API (1.0)
- Mock serverhttps://tidepool.redocly.app/_mock/reference/clinic.v1/v1/clinics/{clinicId}/clinicians
- integrationhttps://external.integration.tidepool.org/v1/clinics/{clinicId}/clinicians
- productionhttps://api.tidepool.org/v1/clinics/{clinicId}/clinicians
- dev1https://dev1.dev.tidepool.org/v1/clinics/{clinicId}/clinicians
- qa1https://qa1.development.tidepool.org/v1/clinics/{clinicId}/clinicians
- qa2https://qa2.development.tidepool.org/v1/clinics/{clinicId}/clinicians
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://tidepool.redocly.app/_mock/reference/clinic.v1/v1/clinics/{clinicId}/clinicians?search=string&offset=0&limit=10&email=user%40example.com&role=string' \
-H 'x-tidepool-session-token: YOUR_API_KEY_HERE'OK
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
[ { "id": "string", "inviteId": "string", "email": "user@example.com", "name": "string", "roles": [ … ], "createdTime": "2019-08-24T14:15:22Z", "updatedTime": "2019-08-24T14:15:22Z" } ]
- Mock serverhttps://tidepool.redocly.app/_mock/reference/clinic.v1/v1/clinics/{clinicId}/clinicians
- integrationhttps://external.integration.tidepool.org/v1/clinics/{clinicId}/clinicians
- productionhttps://api.tidepool.org/v1/clinics/{clinicId}/clinicians
- dev1https://dev1.dev.tidepool.org/v1/clinics/{clinicId}/clinicians
- qa1https://qa1.development.tidepool.org/v1/clinics/{clinicId}/clinicians
- qa2https://qa2.development.tidepool.org/v1/clinics/{clinicId}/clinicians
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://tidepool.redocly.app/_mock/reference/clinic.v1/v1/clinics/{clinicId}/clinicians' \
-H 'Content-Type: application/json' \
-H 'x-tidepool-session-token: YOUR_API_KEY_HERE' \
-d '{
"inviteId": "string",
"email": "user@example.com",
"name": "string",
"roles": [
"CLINIC_ADMIN"
]
}'Comma-separated list of TIDE report categories to return in queried order. If omitted or empty, the default TIDE categories will be returned - see example.
- Mock serverhttps://tidepool.redocly.app/_mock/reference/clinic.v1/v1/clinics/{clinicId}/tide_report
- integrationhttps://external.integration.tidepool.org/v1/clinics/{clinicId}/tide_report
- productionhttps://api.tidepool.org/v1/clinics/{clinicId}/tide_report
- dev1https://dev1.dev.tidepool.org/v1/clinics/{clinicId}/tide_report
- qa1https://qa1.development.tidepool.org/v1/clinics/{clinicId}/tide_report
- qa2https://qa2.development.tidepool.org/v1/clinics/{clinicId}/tide_report
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://tidepool.redocly.app/_mock/reference/clinic.v1/v1/clinics/{clinicId}/tide_report?period=7d&tags=stringstringstringstring&lastDataCutoff=2019-08-24T14%3A15%3A22Z&categories=timeInVeryLowPercent%2CtimeInAnyLowPercent%2CtimeInVeryHighPercent%2CtimeInAnyHighPercent%2CdropInTimeInTargetPercent%2CtimeCGMUsePercent%2CmeetingTargets&excludeNoData=true' \
-H 'x-tidepool-session-token: YOUR_API_KEY_HERE'OK
Clinic identifier.
Minimum exclusive threshold in mmol/L for categorizing if a glucose value is high as established by the AACE.
Minimum exclusive threshold in mmol/L for categorizing if a glucose value is very high as established by the AACE.
Minimum inclusive threshold in mmol/L for categorizing if a glucose value is extremely high. Not defined by the AACE.
Maximum exclusive threshold in mmol/L for categorizing if a glucose value is low as established by the AACE.
Maximum exclusive threshold in mmol/L for categorizing if a glucose value is very low as established by the AACE.
Visual representation of filtered categories selected
{ "config": { "schemaVersion": 0, "clinicId": "2fe2488217ee43e1b2e83c2f", "period": "7d", "lastDataCutoff": "2019-08-24T14:15:22Z", "highGlucoseThreshold": 0, "veryHighGlucoseThreshold": 0, "extremeHighGlucoseThreshold": 0, "lowGlucoseThreshold": 0, "veryLowGlucoseThreshold": 0, "tags": [ … ], "filters": { … } }, "results": { "property1": [ … ], "property2": [ … ] } }