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>"
}
'Update the priority or status of an existing support issue
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>"
}
'API key for authentication
Issue priority (0=No priority, 1=Urgent, 2=High, 3=Medium, 4=Low)
0, 1, 2, 3, 4 Target state ID. Use GET /v4/support/states to retrieve available states. Setting a non-final state on a resolved issue will reopen it.
Optional comment explaining why the issue is being reopened. Max 2000 characters. Only used when reopening a resolved issue.
Issue updated successfully