swit-message-create
Send messages to channels in Swit workspaces with support for plain text, markdown, assets, and attachments using OAuth authentication.
Instructions
Send message to channel
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assets | No | ||
attachments | No | ||
body_type | No | plain | |
channel_id | Yes | ||
content | No | ||
external_asset_type | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"assets": {
"type": "array"
},
"attachments": {
"additionalProperties": {},
"type": "object"
},
"body_type": {
"default": "plain",
"enum": [
"plain",
"markdown"
],
"type": "string"
},
"channel_id": {
"type": "string"
},
"content": {
"type": "string"
},
"external_asset_type": {
"type": "string"
}
},
"required": [
"channel_id"
],
"type": "object"
}