Withings · Example Payload

Withings Oauth2 Token Example

Example OAuth2 token response after exchanging authorization code

HealthWearablesConnected DevicesBody CompositionSleep TrackingBlood PressureActivity TrackingRemote Patient MonitoringOAuth2Webhooks

Withings Oauth2 Token Example is an example object payload from Withings, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

summarydescriptionvalue

Example Payload

Raw ↑
{
  "summary": "OAuth2 access token response",
  "description": "Example OAuth2 token response after exchanging authorization code",
  "value": {
    "status": 0,
    "body": {
      "userid": "12345678",
      "access_token": "a075f8c14fb8df40b08ebc8508533dc332a41910",
      "refresh_token": "f631236f02b991810feb774765b6ae8e6c6839ca",
      "expires_in": 10800,
      "scope": "user.activity,user.sleepevents,user.metrics",
      "csrf_token": "PACnnxwHTaBQOGIVtXmzmBqVyuTcizMe",
      "token_type": "Bearer"
    }
  }
}