Skip to main content
POST
/
api
/
v1
/
incidents
/
{name}
/
acknowledge
Acknowledge Incident
curl --request POST \
  --url https://api.example.com/api/v1/incidents/{name}/acknowledge \
  --header 'Content-Type: application/json' \
  --data '
{
  "acknowledgedBy": "<string>",
  "message": "<string>"
}
'
{
  "apiVersion": "v1",
  "kind": "Incident",
  "metadata": {
    "name": "INC-20260319-001",
    "namespace": "production"
  },
  "status": {
    "state": "Analyzing",
    "acknowledged": true,
    "acknowledgedBy": "carlos.silva@empresa.com",
    "acknowledgedAt": "2026-03-19T15:30:00Z",
    "message": "Investigando aumento de memoria no payment-service"
  }
}
name
string
required
Unique incident name (e.g., INC-20260319-001)
acknowledgedBy
string
required
Identifier of the user or team acknowledging the incident
message
string
Optional message with context about the acknowledgment
{
  "apiVersion": "v1",
  "kind": "Incident",
  "metadata": {
    "name": "INC-20260319-001",
    "namespace": "production"
  },
  "status": {
    "state": "Analyzing",
    "acknowledged": true,
    "acknowledgedBy": "carlos.silva@empresa.com",
    "acknowledgedAt": "2026-03-19T15:30:00Z",
    "message": "Investigando aumento de memoria no payment-service"
  }
}
{
  "apiVersion": "v1",
  "kind": "Error",
  "error": {
    "code": 409,
    "message": "Incident already acknowledged",
    "details": "The incident 'INC-20260319-001' was already acknowledged by carlos.silva@empresa.com at 2026-03-19T15:30:00Z"
  }
}