Web service that stores information about clinics, clinicians and their patients
- Get EHR Settings
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/
- Mock server
https://tidepool.redocly.app/_mock/reference/clinic.v1/v1/redox/verify
- integration
https://external.integration.tidepool.org/v1/redox/verify
- production
https://api.tidepool.org/v1/redox/verify
- dev1
https://dev1.dev.tidepool.org/v1/redox/verify
- qa1
https://qa1.development.tidepool.org/v1/redox/verify
- qa2
https://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 server
https://tidepool.redocly.app/_mock/reference/clinic.v1/v1/clinics/{clinicId}/settings/ehr
- integration
https://external.integration.tidepool.org/v1/clinics/{clinicId}/settings/ehr
- production
https://api.tidepool.org/v1/clinics/{clinicId}/settings/ehr
- dev1
https://dev1.dev.tidepool.org/v1/clinics/{clinicId}/settings/ehr
- qa1
https://qa1.development.tidepool.org/v1/clinics/{clinicId}/settings/ehr
- qa2
https://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.
{ "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 } }
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 server
https://tidepool.redocly.app/_mock/reference/clinic.v1/v1/clinics/{clinicId}/settings/ehr
- integration
https://external.integration.tidepool.org/v1/clinics/{clinicId}/settings/ehr
- production
https://api.tidepool.org/v1/clinics/{clinicId}/settings/ehr
- dev1
https://dev1.dev.tidepool.org/v1/clinics/{clinicId}/settings/ehr
- qa1
https://qa1.development.tidepool.org/v1/clinics/{clinicId}/settings/ehr
- qa2
https://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
}
}'