Skip to main content
PATCH
/
v4
/
support
/
issues
/
{issueId}
Update issue priority and/or status
curl --request PATCH \
  --url https://api.kadoa.com/v4/support/issues/{issueId} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "priority": 0,
  "stateId": "<string>",
  "reopenComment": "<string>"
}
'

Authorizations

x-api-key
string
header
required

API key for authentication

Path Parameters

issueId
string
required

Body

application/json
priority
enum<number>

Issue priority (0=No priority, 1=Urgent, 2=High, 3=Medium, 4=Low)

Available options:
0,
1,
2,
3,
4
stateId
string

Target state ID. Use GET /v4/support/states to retrieve available states. Setting a non-final state on a resolved issue will reopen it.

reopenComment
string

Optional comment explaining why the issue is being reopened. Max 2000 characters. Only used when reopening a resolved issue.

Response

200

Issue updated successfully