Web service that stores information about clinics, clinicians and their patients
- Update Membership Restrictions
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/
Pass an array of patient IDs to target a subset of the clinic patients. Omit request body to target all clinic patients.
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/delete_tag/{patientTagId}
- integration
https://external.integration.tidepool.org/v1/clinics/{clinicId}/patients/delete_tag/{patientTagId}
- production
https://api.tidepool.org/v1/clinics/{clinicId}/patients/delete_tag/{patientTagId}
- dev1
https://dev1.dev.tidepool.org/v1/clinics/{clinicId}/patients/delete_tag/{patientTagId}
- qa1
https://qa1.development.tidepool.org/v1/clinics/{clinicId}/patients/delete_tag/{patientTagId}
- qa2
https://qa2.development.tidepool.org/v1/clinics/{clinicId}/patients/delete_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/delete_tag/{patientTagId}' \
-H 'Content-Type: application/json' \
-H 'x-tidepool-session-token: YOUR_API_KEY_HERE' \
-d '[
"string"
]'
- Mock server
https://tidepool.redocly.app/_mock/reference/clinic.v1/v1/clinics/{clinicId}/membership_restrictions
- integration
https://external.integration.tidepool.org/v1/clinics/{clinicId}/membership_restrictions
- production
https://api.tidepool.org/v1/clinics/{clinicId}/membership_restrictions
- dev1
https://dev1.dev.tidepool.org/v1/clinics/{clinicId}/membership_restrictions
- qa1
https://qa1.development.tidepool.org/v1/clinics/{clinicId}/membership_restrictions
- qa2
https://qa2.development.tidepool.org/v1/clinics/{clinicId}/membership_restrictions
- 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/clinics/{clinicId}/membership_restrictions' \
-H 'Content-Type: application/json' \
-H 'x-tidepool-session-token: YOUR_API_KEY_HERE' \
-d '{
"restrictions": [
{
"emailDomain": "example.com",
"requiredIdp": "string"
}
]
}'
{ "restrictions": [ { … } ] }
- Mock server
https://tidepool.redocly.app/_mock/reference/clinic.v1/v1/redox
- integration
https://external.integration.tidepool.org/v1/redox
- production
https://api.tidepool.org/v1/redox
- dev1
https://dev1.dev.tidepool.org/v1/redox
- qa1
https://qa1.development.tidepool.org/v1/redox
- qa2
https://qa2.development.tidepool.org/v1/redox
- 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/redox \
-H 'Content-Type: application/json' \
-H 'x-tidepool-session-token: YOUR_API_KEY_HERE' \
-d '{}'