add_task_comment
Attach comments to tasks on Goodday using task and user IDs. This tool enables clear communication and updates within project workflows.
Instructions
Add a comment to a task.
Args: task_id: The ID of the task user_id: User on behalf of whom API will execute update message: Comment text
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | ||
task_id | Yes | ||
user_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"message": {
"title": "Message",
"type": "string"
},
"task_id": {
"title": "Task Id",
"type": "string"
},
"user_id": {
"title": "User Id",
"type": "string"
}
},
"required": [
"task_id",
"user_id",
"message"
],
"title": "add_task_commentArguments",
"type": "object"
}