create_attachment_action
Create a new attachment action in Webex by specifying action type, message ID, and associated inputs like name, URL, email, and telephone number for enhanced messaging functionality.
Instructions
Create a new attachment action in Webex.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputs | Yes | ||
messageId | Yes | The ID of the message to which the attachment is related. | |
type | Yes | The type of the action (e.g., "submit"). |
Input Schema (JSON Schema)
{
"properties": {
"inputs": {
"properties": {
"Email": {
"description": "The email associated with the action.",
"type": "string"
},
"Name": {
"description": "The name associated with the action.",
"type": "string"
},
"Tel": {
"description": "The telephone number associated with the action.",
"type": "string"
},
"Url": {
"description": "The URL associated with the action.",
"type": "string"
}
},
"required": [
"Name",
"Url",
"Email",
"Tel"
],
"type": "object"
},
"messageId": {
"description": "The ID of the message to which the attachment is related.",
"type": "string"
},
"type": {
"description": "The type of the action (e.g., \"submit\").",
"type": "string"
}
},
"required": [
"type",
"messageId",
"inputs"
],
"type": "object"
}