Cisco Webex · Schema

EditMessageRequest

CollaborationCommunicationsMeetingsMessagingTeamsVideo Conferencing

Properties

Name Type Description
roomId string The room ID of the message.
text string Updated plain text content (max 7439 bytes).
markdown string Updated markdown content (max 7439 bytes).
View JSON Schema on GitHub

JSON Schema

cisco-webex-editmessagerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EditMessageRequest",
  "title": "EditMessageRequest",
  "type": "object",
  "required": [
    "roomId"
  ],
  "properties": {
    "roomId": {
      "type": "string",
      "description": "The room ID of the message."
    },
    "text": {
      "type": "string",
      "description": "Updated plain text content (max 7439 bytes).",
      "maxLength": 7439
    },
    "markdown": {
      "type": "string",
      "description": "Updated markdown content (max 7439 bytes).",
      "maxLength": 7439
    }
  }
}