Webex · Schema

LogOutResourceRequest

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
logoutReason string The reason for performing logout operation, maximum length 128 characters.
agentId string Unique ID of the user who is being logged out, maximum length 36 characters.
View JSON Schema on GitHub

JSON Schema

webex-logoutresourcerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LogOutResourceRequest",
  "title": "LogOutResourceRequest",
  "properties": {
    "logoutReason": {
      "description": "The reason for performing logout operation, maximum length 128 characters.",
      "type": "string",
      "example": "Logout initiated by user [email protected]"
    },
    "agentId": {
      "description": "Unique ID of the user who is being logged out, maximum length 36 characters.",
      "type": "string",
      "example": "faedfcc8-035a-41e3-ad53-ee9fad4ca286"
    }
  },
  "required": [
    "logoutReason"
  ],
  "type": "object"
}