Verizon · JSON Structure

Thingspace Connectivity Activate Devices Request Structure

Request to activate one or more devices

Type: object Properties: 1 Required: 1
WirelessTelecommunicationsIoT5GEnterpriseNetwork APIsFortune 100

ActivateDevicesRequest is a JSON Structure definition published by Verizon, describing 1 property, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

devices

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-activate-devices-request-structure.json",
  "description": "Request to activate one or more devices",
  "type": "object",
  "properties": {
    "devices": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "deviceIds": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DeviceId"
            }
          },
          "servicePlan": {
            "type": "string",
            "description": "Service plan to activate on",
            "example": "ThingSpace"
          },
          "mdnZipCode": {
            "type": "string",
            "description": "ZIP code for MDN assignment",
            "example": "08540"
          },
          "customFields": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "key": {
                  "type": "string"
                },
                "value": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    }
  },
  "required": [
    "devices"
  ],
  "name": "ActivateDevicesRequest"
}