Webex · Schema

SummaryListByOrganizationRequest

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

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

JSON Schema

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