send_chat_message
Send messages to ClickUp Chat channels with optional assignment to create actionable items.
Instructions
Send a new message to a Chat channel (ClickUp Chat v3). Optionally assign it (turning it into an actionable item) and choose message vs. post type. Returns the created message with its id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| team_id | No | Team/Workspace ID. Falls back to CLICKUP_TEAM_ID when omitted. | |
| channel_id | Yes | ID of the channel to post in. | |
| content | Yes | Message body text. Format is set by `content_format`. | |
| content_format | No | Format of `content`: 'text/md' (markdown) or 'text/plain'. | |
| type | No | 'message' for a normal chat message, 'post' for a rich post. Defaults to 'message'. | |
| assignee | No | User id to assign the message to, making it an action item for them. |