Verizon · Schema

DeviceRequestResponse

Response containing request ID for async operations

WirelessTelecommunicationsIoT5GEnterpriseNetwork APIsFortune 100

Properties

Name Type Description
requestId string Unique request ID to track the operation
failedDevices array
View JSON Schema on GitHub

JSON Schema

thingspace-connectivity-device-request-response-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-device-request-response-schema.json",
  "title": "DeviceRequestResponse",
  "description": "Response containing request ID for async operations",
  "type": "object",
  "properties": {
    "requestId": {
      "type": "string",
      "description": "Unique request ID to track the operation",
      "example": "595f5c44-c31c-4552-8670-020a1545a959"
    },
    "failedDevices": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "deviceId": {
            "type": "string"
          },
          "cause": {
            "type": "string"
          }
        }
      }
    }
  }
}