Cisco Webex · Schema

DeviceActivation

CollaborationCommunicationsMeetingsMessagingTeamsVideo Conferencing

Properties

Name Type Description
id string Unique identifier for the device.
code string Activation code for the device.
expiresAt string Expiration time for the activation code.
View JSON Schema on GitHub

JSON Schema

cisco-webex-deviceactivation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeviceActivation",
  "title": "DeviceActivation",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the device."
    },
    "code": {
      "type": "string",
      "description": "Activation code for the device."
    },
    "expiresAt": {
      "type": "string",
      "format": "date-time",
      "description": "Expiration time for the activation code."
    }
  }
}