AT&T · Schema

SendSmsRequest

SendSmsRequest schema from AT&T API

Fortune 100TelecommunicationsWirelessWirelineMessagingSpeechMobileBroadbandEnterprise

Properties

Name Type Description
outboundSMSRequest object
View JSON Schema on GitHub

JSON Schema

sms-api-send-sms-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/at-and-t/refs/heads/main/json-schema/sms-api-send-sms-request-schema.json",
  "title": "SendSmsRequest",
  "description": "SendSmsRequest schema from AT&T API",
  "type": "object",
  "required": [
    "outboundSMSRequest"
  ],
  "properties": {
    "outboundSMSRequest": {
      "type": "object",
      "required": [
        "address",
        "message"
      ],
      "properties": {
        "address": {
          "type": "array",
          "description": "List of destination phone numbers in tel:+E.164 format (max 50)",
          "items": {
            "type": "string",
            "example": "tel:+12125551234"
          },
          "example": [
            "tel:+12125551234"
          ]
        },
        "message": {
          "type": "string",
          "description": "SMS message text (max 4096 characters)",
          "example": "Your verification code is 482910. Valid for 10 minutes."
        },
        "notifyDeliveryStatus": {
          "type": "boolean",
          "description": "If true, delivery status notifications are sent to the registered callback URL",
          "example": true
        }
      }
    }
  }
}