Skip to main content

Update an event (status / assignee / comment)

PATCH 

/v2/events/:id

Partial update of a single event addressed by its event_record_identifier.

  • status: client-facing status label.
  • assignee_email: email of the new assignee, or null to unassign. Same semantics as the dedicated /assignee route.
  • comment: free-text comment attached to the event.

Scope note: events do not carry a priority in the platform, so there is no priority field on this route (incident priority is a separate concept on the incident routes). Event severity is expressed as magnitude on the read APIs; updating magnitude through this API is deferred to a future release.

Rescan behaviour: when rescan is enabled for the event's module, a write against a stale event id is transparently redirected to the latest event in the same series; the response carries rescan_redirect_applied: true plus the originally requested identifier.

Invalid identifiers: an identifier that is not a valid event_record_identifier is rejected with 400 VALIDATION_ERROR; a well-formed identifier that matches no event in the token's org tree returns 404 EVENT_NOT_FOUND.

Request

Responses

Update applied.