Skip to content

Get the history of changes for an incident

GET
/v1/incidents/{id}/history
id
required
integer format: int64

The ID of the incident to retrieve history for

Example
123
page
integer | null format: int64
page_size
integer | null format: int64

List the incident history

Response for listing history entries

object
entries
required
Array<object>

A single entry in the history list, representing a set of simultaneous changes to an item

object
changes
required
Array
One of:

Generic text or enum-display field (status, severity, title, description, …).

object
field
required
string
kind
required
string
Allowed values: text
new
string | null
old
string | null
is_creation
required

True only for the actual first (creation) history row. False for all subsequent rows, including dummy rows inserted by touch_history() when a comment is added.

boolean
timestamp
required
string format: date-time
user
required

A User as returned by the API.

Profile images are not embedded — clients fetch them from GET /api/v1/{icon} when icon is Some.

object
email
required
string
first_name
required
string
icon

Relative path to the user’s avatar endpoint, e.g. "users/{id}/avatar?v={hash}". None when the user has no avatar.

string | null
id
required
string format: uuid
last_name
required
string
num_pages
required
integer format: int64
page
required
integer format: int64
page_size
required
integer format: int64
total
required
integer format: int64

Incident not found