quality_updateIssueTaskStatus
WRITEUpdate issue task status.
Parameters
idstringrequiredstatusenumrequiredtypeenumrequiredassigneestringnulloptionalCall it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "quality_updateIssueTaskStatus",
"arguments": {
"id": "string",
"status": "string",
"type": "string"
}
})Input schema
The raw JSON Schema the tool validates its arguments against.
schema
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"Pending",
"Completed",
"Skipped",
"In Progress"
]
},
"type": {
"type": "string",
"enum": [
"investigation",
"action",
"approval",
"review"
]
},
"assignee": {
"type": [
"string",
"null"
]
}
},
"required": [
"id",
"status",
"type"
]
}