Dexcom · Schema

TokenResponse

TokenResponse schema from Dexcom Developer API

Continuous Glucose MonitoringDiabetesDigital HealthGlucoseHealthcareMedical DevicesWearables

Properties

Name Type Description
access_token string Bearer token used in the `Authorization` header for subsequent requests.
expires_in integer Lifetime in seconds of the access token.
token_type string
refresh_token string Refresh token used to obtain a new access token.
View JSON Schema on GitHub

JSON Schema

dexcom-api-token-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/dexcom/refs/heads/main/json-schema/dexcom-api-token-response-schema.json",
  "title": "TokenResponse",
  "description": "TokenResponse schema from Dexcom Developer API",
  "type": "object",
  "properties": {
    "access_token": {
      "type": "string",
      "description": "Bearer token used in the `Authorization` header for subsequent requests."
    },
    "expires_in": {
      "type": "integer",
      "description": "Lifetime in seconds of the access token.",
      "example": 7200
    },
    "token_type": {
      "type": "string",
      "example": "Bearer"
    },
    "refresh_token": {
      "type": "string",
      "description": "Refresh token used to obtain a new access token."
    }
  }
}