Observer
API

POST /incidents/{id}/messages

Append a timeline message; type=Resolved auto-resolves the parent

Request body#

{
  "type": "Investigating",
  "description": "string"
}

Example request#

curl -X POST "/api/v1/incidents/{id}/messages" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d "{\"type\":\"Investigating\",\"description\":\"string\"}"

Responses#

200: ok#

401: missing or invalid bearer token#

403: missing required scope#

404: not found (or cross-tenant: same response)#

429: rate limit exceeded#

Was this page helpful?