Skip to content

Update Problem

Required scope: problem:update

This bounded update can change the title, description, severity, assignees, and labels. It does not resolve, close, archive, or otherwise transition a problem. The API key creator must currently be authorized for the target problem.

Generated Reference
POST /public-api/publicapi.v1.Problem/UpdateProblem

Updates supported everyday fields without performing lifecycle transitions.

Request UpdateProblemRequest
Response UpdateProblemResponse

UpdateProblemRequest

Field Type
id string
title optional string
description optional string
severity optional int32
add_assignee_ids repeated string
remove_assignee_ids repeated string
add_labels repeated ProblemLabel
remove_label_ids repeated string

UpdateProblemResponse

Field Type
problem Problem
{
"id": "<problem-id>",
"title": "Inspection follow-up",
"severity": 3,
"addAssigneeIds": ["<member-or-team-id>"],
"removeLabelIds": ["<label-id>"]
}

Only supplied scalar fields and requested assignment or label changes are applied. Do not blindly retry a timed-out mutation; it may still complete.