Verizon · Schema

SendSmsRequest

Request to send SMS to devices

WirelessTelecommunicationsIoT5GEnterpriseNetwork APIsFortune 100

Properties

Name Type Description
deviceIds array
smsMessage string SMS message content
encoding string Message encoding type
View JSON Schema on GitHub

JSON Schema

thingspace-connectivity-send-sms-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/verizon/refs/heads/main/json-schema/thingspace-connectivity-send-sms-request-schema.json",
  "title": "SendSmsRequest",
  "description": "Request to send SMS to devices",
  "type": "object",
  "properties": {
    "deviceIds": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DeviceId"
      }
    },
    "smsMessage": {
      "type": "string",
      "maxLength": 160,
      "description": "SMS message content",
      "example": "Hello IoT Device"
    },
    "encoding": {
      "type": "string",
      "enum": [
        "TEXT",
        "UNICODE",
        "BINARY"
      ],
      "description": "Message encoding type",
      "example": "TEXT"
    }
  },
  "required": [
    "deviceIds",
    "smsMessage"
  ]
}