AT&T · Schema

TopupBalance

TopupBalance schema from AT&T API

5GBroadbandCAMARAConnectivityDevice StatusEdge ComputingEnterpriseFortune 100MessagingMobileNetworkNetwork APIsSIM SwapSpeechTelecommunicationsWirelessWireline

Properties

Name Type Description
id string Unique top-up transaction identifier
href string
status string Transaction status
View JSON Schema on GitHub

JSON Schema

mvnx-api-topup-balance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/att/refs/heads/main/json-schema/mvnx-api-topup-balance-schema.json",
  "title": "TopupBalance",
  "description": "TopupBalance schema from AT&T API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique top-up transaction identifier",
      "example": "topup-500123"
    },
    "href": {
      "type": "string",
      "format": "uri",
      "example": "https://devex-web.att.com/topupBalance/topup-500123"
    },
    "status": {
      "type": "string",
      "description": "Transaction status",
      "enum": [
        "completed",
        "failed",
        "inProgress"
      ],
      "example": "completed"
    }
  }
}