Cisco Webex · Schema

CreateAttachmentActionRequest

CollaborationCommunicationsMeetingsMessagingTeamsVideo Conferencing

Properties

Name Type Description
type string The type of action. Currently only 'submit' is supported.
messageId string The message ID containing the adaptive card.
inputs object User input data from the adaptive card fields.
View JSON Schema on GitHub

JSON Schema

cisco-webex-createattachmentactionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateAttachmentActionRequest",
  "title": "CreateAttachmentActionRequest",
  "type": "object",
  "required": [
    "type",
    "messageId",
    "inputs"
  ],
  "properties": {
    "type": {
      "type": "string",
      "description": "The type of action. Currently only 'submit' is supported.",
      "enum": [
        "submit"
      ]
    },
    "messageId": {
      "type": "string",
      "description": "The message ID containing the adaptive card."
    },
    "inputs": {
      "type": "object",
      "description": "User input data from the adaptive card fields.",
      "additionalProperties": true
    }
  }
}