Update Issue Status
update_issue_statusSet an issue's status to open, in_progress, resolved, or suspended and get the updated issue back. Only the status changes, so you can reverse it later without affecting title, severity, or comments.
Instructions
Set an issue's status to open, in_progress, resolved, or suspended and return the updated issue. Only the status changes; title, severity, occurrences, and comments stay, and any status can be set again later, so this is reversible. Confirm which state the user means before calling: resolved asserts the bug is fixed, suspended hides a known non-problem from the default list_issues result. Not a delete: issues cannot be removed through this server. Get issueId from list_issues; an unknown id fails with 'Issue not found'. Requires websiteId or domain with a workspace token.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| domain | No | Website domain from list_websites (e.g. "example.com"). Alternative to websiteId with a workspace token. | |
| status | Yes | New status. resolved asserts the bug is fixed; suspended hides a known non-problem from default listings; open and in_progress keep it visible | |
| issueId | Yes | Issue ID from list_issues | |
| websiteId | No | Website ID from list_websites. Required with a workspace token unless domain is given; ignored with a website key. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | No | Object with status and data: the full issue detail after the change, with the new status. |