AT&T · JSON Structure

Wireless Apis Token Request Structure

OAuth 2.0 token request for AT&T Wireless APIs

Type: object Properties: 6
Fortune 100TelecommunicationsFortune 100WirelessWirelineBroadbandEnterprise5GNetwork

Wireless Apis Token Request Structure is a JSON Structure definition published by AT&T, describing 6 properties. It conforms to the https://json-structure.org/meta/extended/v0/# meta-schema.

Properties

grant_type client_id client_secret scope code refresh_token

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "$id": "https://api.att.com/schemas/wireless/token-request",
  "title": "Token Request",
  "description": "OAuth 2.0 token request for AT&T Wireless APIs",
  "type": "object",
  "properties": {
    "grant_type": {
      "type": "string",
      "enum": [
        "client_credentials",
        "authorization_code",
        "refresh_token"
      ]
    },
    "client_id": {
      "type": "string"
    },
    "client_secret": {
      "type": "string"
    },
    "scope": {
      "type": "string"
    },
    "code": {
      "type": "string"
    },
    "refresh_token": {
      "type": "string"
    }
  }
}