Webex · Schema

PostLineKeyTemplateRequest

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
templateName string Name of the Line Key Template.
deviceModel string The model of the device for which the Line Key Template is applicable. The corresponding device model display name sometimes called the product name, can also be used to specify the model.
userReorderEnabled boolean User Customization Enabled.
lineKeys array Contains a mapping of Line Keys and their corresponding actions.
View JSON Schema on GitHub

JSON Schema

webex-postlinekeytemplaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PostLineKeyTemplateRequest",
  "title": "PostLineKeyTemplateRequest",
  "type": "object",
  "required": [
    "templateName",
    "deviceModel",
    "lineKeys"
  ],
  "properties": {
    "templateName": {
      "type": "string",
      "example": "template for 8845",
      "description": "Name of the Line Key Template."
    },
    "deviceModel": {
      "type": "string",
      "example": "DMS Cisco 8845",
      "description": "The model of the device for which the Line Key Template is applicable. The corresponding device model display name sometimes called the product name, can also be used to specify the model."
    },
    "userReorderEnabled": {
      "type": "boolean",
      "example": true,
      "description": "User Customization Enabled."
    },
    "lineKeys": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ProgrammableLineKeys"
      },
      "description": "Contains a mapping of Line Keys and their corresponding actions."
    }
  }
}