Webex · Schema

DeviceDynamicSettingsListPostResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
tags array Array of device setting values matching the requested tags.
lastUpdateTime integer Timestamp of the last update to these settings.
View JSON Schema on GitHub

JSON Schema

webex-devicedynamicsettingslistpostresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeviceDynamicSettingsListPostResponse",
  "title": "DeviceDynamicSettingsListPostResponse",
  "type": "object",
  "required": [
    "tags"
  ],
  "example": {
    "tags": [
      {
        "familyOrModelDisplayName": "Poly",
        "tag": "%G711U_ORDER%",
        "value": "4",
        "parentValue": "3",
        "parentLevel": "ORGANIZATION"
      }
    ],
    "lastUpdateTime": 1651396800000
  },
  "properties": {
    "tags": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DevicePostResponseTag"
      },
      "description": "Array of device setting values matching the requested tags."
    },
    "lastUpdateTime": {
      "type": "integer",
      "format": "int64",
      "description": "Timestamp of the last update to these settings."
    }
  }
}