Webex · Schema

SummaryListByInteractionRequest

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
orgId string The unique identifier of the organization to which the summarized interactions belong.
interactionId string The unique identifier of a specific interaction.
searchType string The type of search to be performed.
View JSON Schema on GitHub

JSON Schema

webex-summarylistbyinteractionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SummaryListByInteractionRequest",
  "title": "SummaryListByInteractionRequest",
  "type": "object",
  "required": [
    "orgId",
    "interactionId",
    "searchType"
  ],
  "properties": {
    "orgId": {
      "type": "string",
      "description": "The unique identifier of the organization to which the summarized interactions belong."
    },
    "interactionId": {
      "type": "string",
      "description": "The unique identifier of a specific interaction."
    },
    "searchType": {
      "type": "string",
      "enum": [
        "INTERACTION"
      ],
      "description": "The type of search to be performed."
    }
  }
}