Webex · Schema

SummaryListByAgentRequest

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
orgId string The unique identifier of the organization to which the summarized interactions belong.
agentCiUserId string The CI (Common Identity) user ID of the agent associated with the summaries.
searchType string The type of search to be performed.
View JSON Schema on GitHub

JSON Schema

webex-summarylistbyagentrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SummaryListByAgentRequest",
  "title": "SummaryListByAgentRequest",
  "type": "object",
  "required": [
    "orgId",
    "agentCiUserId",
    "searchType"
  ],
  "properties": {
    "orgId": {
      "type": "string",
      "description": "The unique identifier of the organization to which the summarized interactions belong."
    },
    "agentCiUserId": {
      "type": "string",
      "description": "The CI (Common Identity) user ID of the agent associated with the summaries."
    },
    "searchType": {
      "type": "string",
      "enum": [
        "AGENT"
      ],
      "description": "The type of search to be performed."
    }
  }
}