Webex · Schema

ModifyEndpointObject

Request Payload to update an endpoint.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
mobilitySettings object Mobility settings of the endpoint.
View JSON Schema on GitHub

JSON Schema

webex-modifyendpointobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ModifyEndpointObject",
  "title": "ModifyEndpointObject",
  "type": "object",
  "description": "Request Payload to update an endpoint.",
  "example": {
    "mobilitySettings": {
      "alertingEnabled": true
    }
  },
  "required": [
    "mobilitySettings"
  ],
  "properties": {
    "mobilitySettings": {
      "type": "object",
      "required": [
        "alertingEnabled"
      ],
      "properties": {
        "alertingEnabled": {
          "type": "boolean",
          "example": true,
          "description": "If `true`, alerting is enabled for the endpoint."
        }
      },
      "description": "Mobility settings of the endpoint."
    }
  }
}