Verizon · Schema

DeactivateDevicesRequest

Request to deactivate one or more devices

WirelessTelecommunicationsIoT5GEnterpriseNetwork APIsFortune 100

Properties

Name Type Description
devices array
reasonCode string Reason code for deactivation
etfWaiver boolean Whether to waive early termination fee
View JSON Schema on GitHub

JSON Schema

thingspace-connectivity-deactivate-devices-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-deactivate-devices-request-schema.json",
  "title": "DeactivateDevicesRequest",
  "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"
  ]
}