Verizon · JSON Structure

Thingspace Connectivity Deactivate Devices Request Structure

Request to deactivate one or more devices

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

DeactivateDevicesRequest 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

devices reasonCode etfWaiver

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-deactivate-devices-request-structure.json",
  "description": "Request to deactivate one or more devices",
  "type": "object",
  "properties": {
    "devices": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "deviceIds": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DeviceId"
            }
          }
        }
      }
    },
    "reasonCode": {
      "type": "string",
      "description": "Reason code for deactivation",
      "example": "FF"
    },
    "etfWaiver": {
      "type": "boolean",
      "description": "Whether to waive early termination fee",
      "example": false
    }
  },
  "required": [
    "devices",
    "reasonCode"
  ],
  "name": "DeactivateDevicesRequest"
}