Skip to main content
POST
/
incidents
/
{id}
/
comments
Add comment to incident
curl --request POST \
  --url https://api.ipulse.one/incidents/{id}/comments \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "content": "Investigating the database connection issue"
}
'

Authorizations

Authorization
string
header
required

JWT Bearer token authentication

Path Parameters

id
string
required

Body

application/json
content
string
required
Example:

"Investigating the database connection issue"

internal_only
boolean
default:false

Response

201

Comment added successfully