AT&T · Schema

Token Request

OAuth 2.0 token request for AT&T Wireless APIs

Fortune 100TelecommunicationsFortune 100WirelessWirelineBroadbandEnterprise5GNetwork

Properties

Name Type Description
grant_type string
client_id string
client_secret string
scope string
code string
refresh_token string
View JSON Schema on GitHub

JSON Schema

wireless-apis-token-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$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",
  "required": [
    "grant_type",
    "client_id",
    "client_secret",
    "scope"
  ],
  "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"
    }
  }
}