APIs intended for internal use by Tidepool.
- Update Permissions for User in Group
Authorization API (1.0)- Copy for LLMCopy page as Markdown for LLMs
- View as MarkdownOpen this page as Markdown
- Open in ChatGPTGet insights from ChatGPT
- Open in ClaudeGet insights from Claude
- Copy for LLMCopy page as Markdown for LLMs
- View as MarkdownOpen this page as Markdown
- Open in ChatGPTGet insights from ChatGPT
- Open in ClaudeGet insights from Claude
The Tidepool API is an HTTP REST API used by Tidepool clients use to communicate with the Tidepool Platform.
For more information, see the Getting Started section.
https://tidepool.redocly.app/_mock/reference/access.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/
Internal- Copy for LLMCopy page as Markdown for LLMs
- View as MarkdownOpen this page as Markdown
- Open in ChatGPTGet insights from ChatGPT
- Open in ClaudeGet insights from Claude
- Copy for LLMCopy page as Markdown for LLMs
- View as MarkdownOpen this page as Markdown
- Open in ChatGPTGet insights from ChatGPT
- Open in ClaudeGet insights from Claude
Authorization- Copy for LLMCopy page as Markdown for LLMs
- View as MarkdownOpen this page as Markdown
- Open in ChatGPTGet insights from ChatGPT
- Open in ClaudeGet insights from Claude
- Copy for LLMCopy page as Markdown for LLMs
- View as MarkdownOpen this page as Markdown
- Open in ChatGPTGet insights from ChatGPT
- Open in ClaudeGet insights from Claude
List, create and manage authorizations that grant access to another user's diabetes data.
Get Groups for User
- Copy for LLMCopy page as Markdown for LLMs
- View as MarkdownOpen this page as Markdown
- Open in ChatGPTGet insights from ChatGPT
- Open in ClaudeGet insights from Claude
- Mock server
https://tidepool.redocly.app/_mock/reference/access.v1/access/groups/{userId}
- integration
https://external.integration.tidepool.org/access/groups/{userId}
- production
https://api.tidepool.org/access/groups/{userId}
- dev1
https://dev1.dev.tidepool.org/access/groups/{userId}
- qa1
https://qa1.development.tidepool.org/access/groups/{userId}
- qa2
https://qa2.development.tidepool.org/access/groups/{userId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://tidepool.redocly.app/_mock/reference/access.v1/access/groups/{userId}' \
-H 'X-Tidepool-Session-Token: YOUR_API_KEY_HERE'
{ "d4206d26a6": { "root": {} }, "305cabe660": { "note": {}, "view": {} }, "7575613eca": { "view": {}, "note": {}, "upload": {} }, "975ac5cc92": { "note": {}, "view": {} } }
Get Users in Group
- Copy for LLMCopy page as Markdown for LLMs
- View as MarkdownOpen this page as Markdown
- Open in ChatGPTGet insights from ChatGPT
- Open in ClaudeGet insights from Claude
- Mock server
https://tidepool.redocly.app/_mock/reference/access.v1/access/{sharerId}
- integration
https://external.integration.tidepool.org/access/{sharerId}
- production
https://api.tidepool.org/access/{sharerId}
- dev1
https://dev1.dev.tidepool.org/access/{sharerId}
- qa1
https://qa1.development.tidepool.org/access/{sharerId}
- qa2
https://qa2.development.tidepool.org/access/{sharerId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://tidepool.redocly.app/_mock/reference/access.v1/access/{sharerId}' \
-H 'X-Tidepool-Session-Token: YOUR_API_KEY_HERE'
{ "d4206d26a6": { "root": {} }, "305cabe660": { "note": {}, "view": {} }, "7575613eca": { "view": {}, "note": {}, "upload": {} }, "975ac5cc92": { "note": {}, "view": {} } }
Get User Permissions in Group
- Copy for LLMCopy page as Markdown for LLMs
- View as MarkdownOpen this page as Markdown
- Open in ChatGPTGet insights from ChatGPT
- Open in ClaudeGet insights from Claude
- Mock server
https://tidepool.redocly.app/_mock/reference/access.v1/access/{sharerId}/{userId}
- integration
https://external.integration.tidepool.org/access/{sharerId}/{userId}
- production
https://api.tidepool.org/access/{sharerId}/{userId}
- dev1
https://dev1.dev.tidepool.org/access/{sharerId}/{userId}
- qa1
https://qa1.development.tidepool.org/access/{sharerId}/{userId}
- qa2
https://qa2.development.tidepool.org/access/{sharerId}/{userId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://tidepool.redocly.app/_mock/reference/access.v1/access/{sharerId}/{userId}' \
-H 'X-Tidepool-Session-Token: YOUR_API_KEY_HERE'
{ "root": {} }
Update Permissions for User in Group
- Copy for LLMCopy page as Markdown for LLMs
- View as MarkdownOpen this page as Markdown
- Open in ChatGPTGet insights from ChatGPT
- Open in ClaudeGet insights from Claude
- Mock server
https://tidepool.redocly.app/_mock/reference/access.v1/access/{sharerId}/{userId}
- integration
https://external.integration.tidepool.org/access/{sharerId}/{userId}
- production
https://api.tidepool.org/access/{sharerId}/{userId}
- dev1
https://dev1.dev.tidepool.org/access/{sharerId}/{userId}
- qa1
https://qa1.development.tidepool.org/access/{sharerId}/{userId}
- qa2
https://qa2.development.tidepool.org/access/{sharerId}/{userId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://tidepool.redocly.app/_mock/reference/access.v1/access/{sharerId}/{userId}' \
-H 'Content-Type: application/json' \
-H 'X-Tidepool-Session-Token: YOUR_API_KEY_HERE' \
-d '{
"view": {}
}'
{ "root": {} }