Skip to main content
PUT
/
api
/
v2
/
workspaces
/
{workspaceId}
/
incidents
/
{source}
/
{incidentId}
/
comments
/
{commentId}
Update incident comment
curl --request PUT \
  --url https://api.example.com/api/v2/workspaces/{workspaceId}/incidents/{source}/{incidentId}/comments/{commentId} \
  --header 'Content-Type: application/json' \
  --data '
{
  "content": "<string>",
  "extensionId": "<string>"
}
'
{
  "type": "<string>",
  "title": "<string>",
  "status": 123,
  "detail": "<string>",
  "instance": "<string>",
  "code": "<string>",
  "requestId": "<string>",
  "timestamp": "<string>",
  "target": "<string>",
  "errors": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.contraforce.com/llms.txt

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

Path Parameters

workspaceId
string<uuid>
required
source
enum<string>
required
Available options:
Sentinel,
DefenderXDR,
QRadar,
Splunk,
CrowdStrike,
SentinelOne
incidentId
string
required
commentId
string
required

Body

application/json

v2 request body for updating an existing comment on an incident.

content
null | string

Replacement body for the comment.

extensionId
null | string

Id of the extension associated with the incident; required to route the write back to the originating system.

Response

No Content