Web service that stores information about clinics, clinicians and their patients
- Update Tier
Clinics API (1.0)
https://tidepool.redocly.app/_mock/reference/clinic.v1/
https://external.integration.tidepool.org/
https://api.tidepool.org/
https://dev1.dev.tidepool.org/
https://qa1.development.tidepool.org/
https://qa2.development.tidepool.org/
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
- Mock server
https://tidepool.redocly.app/_mock/reference/clinic.v1/v1/patients/{userId}/data_sources
- integration
https://external.integration.tidepool.org/v1/patients/{userId}/data_sources
- production
https://api.tidepool.org/v1/patients/{userId}/data_sources
- dev1
https://dev1.dev.tidepool.org/v1/patients/{userId}/data_sources
- qa1
https://qa1.development.tidepool.org/v1/patients/{userId}/data_sources
- qa2
https://qa2.development.tidepool.org/v1/patients/{userId}/data_sources
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://tidepool.redocly.app/_mock/reference/clinic.v1/v1/patients/{userId}/data_sources' \
-H 'Content-Type: application/json' \
-H 'x-tidepool-session-token: YOUR_API_KEY_HERE' \
-d '[
{
"state": "connected",
"providerName": "dexcom",
"modifiedTime": "2017-02-06T02:37:46Z",
"expirationTime": "2017-02-06T02:37:46Z"
}
]'
- Mock server
https://tidepool.redocly.app/_mock/reference/clinic.v1/v1/clinics/{clinicId}/tier
- integration
https://external.integration.tidepool.org/v1/clinics/{clinicId}/tier
- production
https://api.tidepool.org/v1/clinics/{clinicId}/tier
- dev1
https://dev1.dev.tidepool.org/v1/clinics/{clinicId}/tier
- qa1
https://qa1.development.tidepool.org/v1/clinics/{clinicId}/tier
- qa2
https://qa2.development.tidepool.org/v1/clinics/{clinicId}/tier
- 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}/tier' \
-H 'Content-Type: application/json' \
-H 'x-tidepool-session-token: YOUR_API_KEY_HERE' \
-d '{
"tier": "tier0100"
}'
Array of clinic patient user IDs to target for tag assignment.
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
- Mock server
https://tidepool.redocly.app/_mock/reference/clinic.v1/v1/clinics/{clinicId}/patients/assign_tag/{patientTagId}
- integration
https://external.integration.tidepool.org/v1/clinics/{clinicId}/patients/assign_tag/{patientTagId}
- production
https://api.tidepool.org/v1/clinics/{clinicId}/patients/assign_tag/{patientTagId}
- dev1
https://dev1.dev.tidepool.org/v1/clinics/{clinicId}/patients/assign_tag/{patientTagId}
- qa1
https://qa1.development.tidepool.org/v1/clinics/{clinicId}/patients/assign_tag/{patientTagId}
- qa2
https://qa2.development.tidepool.org/v1/clinics/{clinicId}/patients/assign_tag/{patientTagId}
- 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}/patients/assign_tag/{patientTagId}' \
-H 'Content-Type: application/json' \
-H 'x-tidepool-session-token: YOUR_API_KEY_HERE' \
-d '[
"string"
]'