Skip to main content
POST
/
v3
/
service
/
alerts
/
{ticket}
/
comments
Add Comment
curl --request POST \
  --url https://app.plugchoice.com/api/v3/service/alerts/{ticket}/comments \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "body": "<string>"
}
'
{
  "id": 123,
  "body": "<string>",
  "created_at": "<string>",
  "user": {
    "id": 123,
    "name": "<string>",
    "email": "<string>"
  }
}
Adds a comment to a service alert ticket.
ticket
string
required
The UUID of the alert ticket.
body
string
required
The comment text. Maximum 10,000 characters.

Response

id
integer
The numeric ID of the comment.
body
string
The comment text.
created_at
string
ISO 8601 timestamp of when the comment was created.
user
object
The user who created the comment.