Web service that stores information about clinics, clinicians and their patients
Tidepool API/Clinics API//
- Get EHR Settings
Migrate Legacy Clinician Patients
Retrieve Migration Status
Enable Clinics
Trigger initial migration
Get Migration
Update Migration
Remove User from Clinics
Update User Details
List All Clinicians
UpdatePatientSummary
DeletePatientSummary
Create or update a data source for a patient
Update Tier
Assign Patient Tag To Clinic Patients
Delete Patient Tag From Clinic Patients
Update Membership Restrictions
Redox EHR Endpoint
Redox Verify Endpoint
Update EHR Settings
Match Clinic and Patient
Get MRN Settings
Update MRN Settings
Update Patient Count Settings
Refresh Patient Count
Sync EHR Data
Preorder Form Webhook
Get Programs
Get Program Url
Notification Webhook
View PDF Report
Add Service Account
Sync EHR Data for Patient
Merge Clinic
Connect Provider
Get EHR Settings
Clinics API (1.0)
Download OpenAPI description
Overview
Languages
Servers
Mock server
https://tidepool.redocly.app/_mock/reference/clinic.v1
integration
https://external.integration.tidepool.org
production
https://api.tidepool.org
dev1
https://dev1.dev.tidepool.org
qa1
https://qa1.development.tidepool.org
qa2
https://qa2.development.tidepool.org
- Mock serverhttps://tidepool.redocly.app/_mock/reference/clinic.v1/v1/redox/verify
- integrationhttps://external.integration.tidepool.org/v1/redox/verify
- productionhttps://api.tidepool.org/v1/redox/verify
- dev1https://dev1.dev.tidepool.org/v1/redox/verify
- qa1https://qa1.development.tidepool.org/v1/redox/verify
- qa2https://qa2.development.tidepool.org/v1/redox/verify
- 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/verify \
-H 'x-tidepool-session-token: YOUR_API_KEY_HERE'- Mock serverhttps://tidepool.redocly.app/_mock/reference/clinic.v1/v1/clinics/{clinicId}/settings/ehr
- integrationhttps://external.integration.tidepool.org/v1/clinics/{clinicId}/settings/ehr
- productionhttps://api.tidepool.org/v1/clinics/{clinicId}/settings/ehr
- dev1https://dev1.dev.tidepool.org/v1/clinics/{clinicId}/settings/ehr
- qa1https://qa1.development.tidepool.org/v1/clinics/{clinicId}/settings/ehr
- qa2https://qa2.development.tidepool.org/v1/clinics/{clinicId}/settings/ehr
- 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}/settings/ehr' \
-H 'x-tidepool-session-token: YOUR_API_KEY_HERE'OK
Scheduled Report Settings
Send a PDF Report and a Flowsheet to Redox after a dataset is uploaded.
This configuration only applies to integrations using Redox Data Model
Codes of the clinical info items used to select the tags to associate with the patient. If defined, all tags of a patient will be replaced every time an enrollment order for the patient is processed.
Response
application/json
{ "enabled": true, "sourceId": "string", "destinationIds": { "flowsheet": "string", "results": "string", "notes": "string" }, "procedureCodes": { "enableSummaryReports": "string", "disableSummaryReports": "string", "createAccount": "string", "createAccountAndEnableReports": "string" }, "mrnIdType": "string", "provider": "xealth", "scheduledReports": { "onUploadEnabled": true, "onUploadNoteEventType": "New", "cadence": "1d" }, "tags": { "codes": [ … ], "separator": "string" }, "flowsheets": { "icode": true } }
Bodyapplication/json
Scheduled Report Settings
Send a PDF Report and a Flowsheet to Redox after a dataset is uploaded.
This configuration only applies to integrations using Redox Data Model
Codes of the clinical info items used to select the tags to associate with the patient. If defined, all tags of a patient will be replaced every time an enrollment order for the patient is processed.
- Mock serverhttps://tidepool.redocly.app/_mock/reference/clinic.v1/v1/clinics/{clinicId}/settings/ehr
- integrationhttps://external.integration.tidepool.org/v1/clinics/{clinicId}/settings/ehr
- productionhttps://api.tidepool.org/v1/clinics/{clinicId}/settings/ehr
- dev1https://dev1.dev.tidepool.org/v1/clinics/{clinicId}/settings/ehr
- qa1https://qa1.development.tidepool.org/v1/clinics/{clinicId}/settings/ehr
- qa2https://qa2.development.tidepool.org/v1/clinics/{clinicId}/settings/ehr
- 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}/settings/ehr' \
-H 'Content-Type: application/json' \
-H 'x-tidepool-session-token: YOUR_API_KEY_HERE' \
-d '{
"enabled": true,
"sourceId": "string",
"destinationIds": {
"flowsheet": "string",
"results": "string",
"notes": "string"
},
"procedureCodes": {
"enableSummaryReports": "string",
"disableSummaryReports": "string",
"createAccount": "string",
"createAccountAndEnableReports": "string"
},
"mrnIdType": "string",
"provider": "xealth",
"scheduledReports": {
"onUploadEnabled": true,
"onUploadNoteEventType": "New",
"cadence": "1d"
},
"tags": {
"codes": [
"string"
],
"separator": "string"
},
"flowsheets": {
"icode": true
}
}'