AT&T · Schema

Delivery Info

SMS delivery status information

Fortune 100TelecommunicationsFortune 100WirelessWirelineBroadbandEnterprise5GNetwork

Properties

Name Type Description
address string
deliveryStatus string
View JSON Schema on GitHub

JSON Schema

wireless-apis-delivery-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.att.com/schemas/wireless/delivery-info",
  "title": "Delivery Info",
  "description": "SMS delivery status information",
  "type": "object",
  "properties": {
    "address": {
      "type": "string"
    },
    "deliveryStatus": {
      "type": "string",
      "enum": [
        "DeliveredToTerminal",
        "DeliveryImpossible",
        "DeliveredToNetwork",
        "MessageWaiting"
      ]
    }
  }
}