clickup_chat_message_send
Post a new top-level message to a ClickUp Chat channel. Supports markdown, @mentions, and emoji.
Instructions
Post a new top-level message to a ClickUp Chat channel. For replies inside a thread use clickup_chat_reply_send; for DMs use clickup_chat_dm. Returns the created message object including its new id, which you can pass to clickup_chat_reaction_add, clickup_chat_reply_send, etc.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| channel_id | Yes | ID of the target channel. Obtain from clickup_chat_channel_list (field: id). | |
| content | Yes | Message body. Supports markdown, @mentions (e.g. '@username'), and emoji. | |
| team_id | No | Workspace (team) ID. Obtain from clickup_workspace_list (field: id). Omit to use the default workspace from config. | |
| type | No | Message subtype. Defaults to 'message' (a normal chat message). Use 'post' for a long-form post. ClickUp requires this field server-side. |