Skip to main content
PATCH
/
v3
/
service
/
alerts
/
{ticket}
Update Alert
curl --request PATCH \
  --url https://app.plugchoice.com/api/v3/service/alerts/{ticket} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "description": "<string>",
  "severity": "<string>",
  "status": "<string>",
  "assigned_to": 123
}
'

Documentation Index

Fetch the complete documentation index at: https://developer.plugchoice.com/llms.txt

Use this file to discover all available pages before exploring further.

Updates the properties of a service alert ticket.
ticket
string
required
The UUID of the alert ticket.
title
string
The alert title. Maximum 255 characters.
description
string
The alert description. Maximum 10,000 characters. Pass null to clear.
severity
string
The severity level. One of info, warning, critical.
status
string
The ticket status. One of open, acknowledged, in_progress, resolved.
assigned_to
integer
The user ID to assign the ticket to. Pass null to unassign.

Response

The updated alert ticket object.