Dexcom · JSON Structure

Dexcom Api Token Response Structure

TokenResponse schema from Dexcom Developer API

Type: object Properties: 4
Continuous Glucose MonitoringDiabetesDigital HealthGlucoseHealthcareMedical DevicesWearables

TokenResponse is a JSON Structure definition published by Dexcom, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

access_token expires_in token_type refresh_token

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/dexcom/refs/heads/main/json-structure/dexcom-api-token-response-structure.json",
  "name": "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": "int32",
      "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."
    }
  }
}