twist_threads_move_to_channel
Move a thread from its current location to a specified channel in Twist workspaces. Useful for organizing discussions and improving workflow efficiency.
Instructions
Moves the thread to a different channel.
Args: id: The id of the thread to_channel: The target channel's id
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ||
to_channel | Yes |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"title": "Id",
"type": "integer"
},
"to_channel": {
"title": "To Channel",
"type": "integer"
}
},
"required": [
"id",
"to_channel"
],
"title": "twist_threads_move_to_channelArguments",
"type": "object"
}