AT&T · Schema

Token Response

OAuth 2.0 token response from AT&T

Fortune 100TelecommunicationsFortune 100WirelessWirelineBroadbandEnterprise5GNetwork

Properties

Name Type Description
access_token string
token_type string
expires_in integer
refresh_token string
scope string
View JSON Schema on GitHub

JSON Schema

wireless-apis-token-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.att.com/schemas/wireless/token-response",
  "title": "Token Response",
  "description": "OAuth 2.0 token response from AT&T",
  "type": "object",
  "properties": {
    "access_token": {
      "type": "string"
    },
    "token_type": {
      "type": "string",
      "enum": [
        "bearer"
      ]
    },
    "expires_in": {
      "type": "integer"
    },
    "refresh_token": {
      "type": "string"
    },
    "scope": {
      "type": "string"
    }
  }
}