Webex · Schema

PutLineKeyTemplateRequest

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
userReorderEnabled boolean Indicates whether the user can reorder the line keys.
lineKeys array List of line keys that are being updated.
View JSON Schema on GitHub

JSON Schema

webex-putlinekeytemplaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PutLineKeyTemplateRequest",
  "title": "PutLineKeyTemplateRequest",
  "type": "object",
  "required": [
    "lineKeys"
  ],
  "properties": {
    "userReorderEnabled": {
      "type": "boolean",
      "example": true,
      "description": "Indicates whether the user can reorder the line keys."
    },
    "lineKeys": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ProgrammableLineKeys"
      },
      "description": "List of line keys that are being updated."
    }
  }
}