Web service that stores information about clinics, clinicians and their patients
- Get Migration
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/clinics/{clinicId}/migrate
- integration
https://external.integration.tidepool.org/v1/clinics/{clinicId}/migrate
- production
https://api.tidepool.org/v1/clinics/{clinicId}/migrate
- dev1
https://dev1.dev.tidepool.org/v1/clinics/{clinicId}/migrate
- qa1
https://qa1.development.tidepool.org/v1/clinics/{clinicId}/migrate
- qa2
https://qa2.development.tidepool.org/v1/clinics/{clinicId}/migrate
- 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}/migrate' \
-H 'Content-Type: application/json' \
-H 'x-tidepool-session-token: YOUR_API_KEY_HERE' \
-d '{
"attestationSubmitted": true
}'
{ "userId": "string", "status": "PENDING", "createdTime": "2019-08-24T14:15:22Z", "updatedTime": "2019-08-24T14:15:22Z", "attestationTime": "2019-08-24T14:15:22Z" }
Clinic ID
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}/migrations/{userId}
- integration
https://external.integration.tidepool.org/v1/clinics/{clinicId}/migrations/{userId}
- production
https://api.tidepool.org/v1/clinics/{clinicId}/migrations/{userId}
- dev1
https://dev1.dev.tidepool.org/v1/clinics/{clinicId}/migrations/{userId}
- qa1
https://qa1.development.tidepool.org/v1/clinics/{clinicId}/migrations/{userId}
- qa2
https://qa2.development.tidepool.org/v1/clinics/{clinicId}/migrations/{userId}
- 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/2fe2488217ee43e1b2e83c2f/migrations/{userId}' \
-H 'x-tidepool-session-token: YOUR_API_KEY_HERE'
{ "userId": "string", "status": "PENDING", "createdTime": "2019-08-24T14:15:22Z", "updatedTime": "2019-08-24T14:15:22Z", "attestationTime": "2019-08-24T14:15:22Z" }
Clinic ID
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}/migrations/{userId}
- integration
https://external.integration.tidepool.org/v1/clinics/{clinicId}/migrations/{userId}
- production
https://api.tidepool.org/v1/clinics/{clinicId}/migrations/{userId}
- dev1
https://dev1.dev.tidepool.org/v1/clinics/{clinicId}/migrations/{userId}
- qa1
https://qa1.development.tidepool.org/v1/clinics/{clinicId}/migrations/{userId}
- qa2
https://qa2.development.tidepool.org/v1/clinics/{clinicId}/migrations/{userId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
'https://tidepool.redocly.app/_mock/reference/clinic.v1/v1/clinics/2fe2488217ee43e1b2e83c2f/migrations/{userId}' \
-H 'Content-Type: application/json' \
-H 'x-tidepool-session-token: YOUR_API_KEY_HERE' \
-d '{
"status": "PENDING"
}'
{ "userId": "string", "status": "PENDING", "createdTime": "2019-08-24T14:15:22Z", "updatedTime": "2019-08-24T14:15:22Z", "attestationTime": "2019-08-24T14:15:22Z" }