Webex · Schema
SubmitCardAction
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| type | string | The type of action to perform. |
| messageId | string | The ID of the message which contains the attachment. |
| inputs | object | The attachment action's inputs. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SubmitCardAction",
"title": "SubmitCardAction",
"type": "object",
"required": [
"type",
"messageId",
"inputs"
],
"properties": {
"type": {
"type": "string",
"enum": [
"submit"
],
"description": "The type of action to perform."
},
"messageId": {
"type": "string",
"example": "GFyazovL3VzL1BFT1BMRS80MDNlZmUwNy02Yzc3LTQyY2UtOWI4NC",
"description": "The ID of the message which contains the attachment."
},
"inputs": {
"type": "object",
"properties": {
"Name": {
"type": "string",
"example": "John Andersen"
},
"Url": {
"type": "string",
"example": "https://example.com"
},
"Email": {
"type": "string",
"example": "[email protected]"
},
"Tel": {
"type": "string",
"example": "+1 408 555 7209"
}
},
"description": "The attachment action's inputs."
}
}
}