AT&T · JSON Structure

Sms Api Delivery Info Response Structure

DeliveryInfoResponse schema from AT&T API

Type: object Properties: 1
Fortune 100TelecommunicationsWirelessWirelineMessagingSpeechMobileBroadbandEnterprise

DeliveryInfoResponse is a JSON Structure definition published by AT&T, describing 1 property. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

deliveryInfoList

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/at-and-t/refs/heads/main/json-structure/sms-api-delivery-info-response-structure.json",
  "description": "DeliveryInfoResponse schema from AT&T API",
  "type": "object",
  "properties": {
    "deliveryInfoList": {
      "type": "object",
      "properties": {
        "deliveryInfo": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "address": {
                "type": "string",
                "description": "Recipient phone number",
                "example": "tel:+12125551234"
              },
              "deliveryStatus": {
                "type": "string",
                "description": "Current delivery status of the message",
                "enum": [
                  "DeliveredToNetwork",
                  "DeliveredToTerminal",
                  "DeliveryImpossible",
                  "MessageWaiting",
                  "DeliveryUncertain"
                ],
                "example": "DeliveredToTerminal"
              }
            }
          }
        },
        "resourceURL": {
          "type": "uri",
          "description": "URL of this delivery info resource",
          "example": "https://api.att.com/sms/v3/messaging/outbox/msg-500123"
        }
      }
    }
  },
  "name": "DeliveryInfoResponse"
}