twist_threads_update
Modify existing threads by updating content, title, attachments, actions, or mentions using this tool to streamline communication in Twist workspaces.
Instructions
Updates an existing thread.
Args: id: The id of the thread actions: List of action buttons to the thread attachments: List of attachments to the thread content: The content of the thread direct_group_mentions: The groups that are directly mentioned direct_mentions: The users that are directly mentioned title: The title of the thread
Input Schema
Name | Required | Description | Default |
---|---|---|---|
actions | No | ||
attachments | No | ||
content | No | ||
direct_group_mentions | No | ||
direct_mentions | No | ||
id | Yes | ||
title | No |
Input Schema (JSON Schema)
{
"properties": {
"actions": {
"anyOf": [
{
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Actions"
},
"attachments": {
"anyOf": [
{
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Attachments"
},
"content": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Content"
},
"direct_group_mentions": {
"anyOf": [
{
"items": {
"type": "integer"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Direct Group Mentions"
},
"direct_mentions": {
"anyOf": [
{
"items": {
"type": "integer"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Direct Mentions"
},
"id": {
"title": "Id",
"type": "integer"
},
"title": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Title"
}
},
"required": [
"id"
],
"title": "twist_threads_updateArguments",
"type": "object"
}