twist_threads_mute
Mute specific threads in Twist for a set duration to minimize distractions. Input the thread ID and mute duration in minutes to temporarily silence notifications.
Instructions
Mutes a thread for a number of minutes.
Args: id: The id of the thread minutes: The number of minutes to mute the thread
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ||
minutes | Yes |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"title": "Id",
"type": "integer"
},
"minutes": {
"title": "Minutes",
"type": "integer"
}
},
"required": [
"id",
"minutes"
],
"title": "twist_threads_muteArguments",
"type": "object"
}