add_attachments_to_message
Enhance messages on Carbon Voice by attaching links or files. Provide the message ID and attachment URLs to include additional resources in your communication.
Instructions
Add attachments to a message. In order to add attachments to a message, you must provide a message id and the attachments.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ||
links | Yes | Array of links to be attached to the message |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"links": {
"description": "Array of links to be attached to the message",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"id",
"links"
],
"type": "object"
}