Verizon · JSON Structure

Thingspace Connectivity Send Sms Request Structure

Request to send SMS to devices

Type: object Properties: 3 Required: 2
WirelessTelecommunicationsIoT5GEnterpriseNetwork APIsFortune 100

SendSmsRequest is a JSON Structure definition published by Verizon, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

deviceIds smsMessage encoding

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/verizon/refs/heads/main/json-structure/thingspace-connectivity-send-sms-request-structure.json",
  "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"
  ],
  "name": "SendSmsRequest"
}