update_task_status
Update the status of a Goodday task by specifying its ID, user ID, and new status, with an optional message for context.
Instructions
Update the status of a task.
Args: task_id: The ID of the task to update user_id: User on behalf of whom API will execute update status_id: New status ID message: Optional comment
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | No | ||
status_id | Yes | ||
task_id | Yes | ||
user_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"message": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Message"
},
"status_id": {
"title": "Status Id",
"type": "string"
},
"task_id": {
"title": "Task Id",
"type": "string"
},
"user_id": {
"title": "User Id",
"type": "string"
}
},
"required": [
"task_id",
"user_id",
"status_id"
],
"title": "update_task_statusArguments",
"type": "object"
}