Skip to main content
POST
List changes

Restrictions

Authorizations

app_key
string
query
required

App key issued from the Flashduty console under Account → APP Keys. Required on every public API call. Keep it secret — it grants the same access as the owning account.

Body

application/json
start_time
integer<int64>

Start of the query window, Unix epoch seconds. Optional — when both start_time and end_time are omitted or 0, the window defaults to the last hour. Must be less than end_time, with a span of at most 31 days. A change matches when its [start_time, last_time] window overlaps the query window.

Required range: x >= 0
end_time
integer<int64>

End of the query window, Unix epoch seconds. See start_time for defaults and constraints.

Required range: x >= 0
p
integer<int64>

Page number, starting at 1.

Required range: x >= 1
limit
integer<int64>
default:10

Number of items per page.

Required range: 1 <= x <= 100
channel_ids
integer<int64>[]

Filter by channel IDs.

integration_ids
integer<int64>[]

Filter by reporting integration IDs. At least 1 entry when provided.

Minimum array length: 1
orderby
enum<string>

Sort field: start_time or last_time. Defaults to start_time.

Available options:
start_time,
last_time
asc
boolean

Sort in ascending order when true; default is descending.

include_events
boolean

Include the underlying change events for each change when true.

query
string

Case-insensitive substring or regular-expression match over the change title, change_key, and description. An invalid regular expression falls back to a literal match.

filters
object[]

Structured filters ANDed onto the query (e.g. on labels). Keys prefixed with incident are ignored.

data_source_ids
integer<int64>[]
deprecated

Deprecated: use integration_ids instead. At least 1 entry when provided.

Minimum array length: 1

Integration ID.

data_source_id
integer<int64>
deprecated

Deprecated: use integration_ids instead. Single integration ID to filter by.

Required range: x >= 1
integration_id
integer<int64>
deprecated

Deprecated: use integration_ids instead. Single integration ID to filter by.

Required range: x >= 1

Response

Success

Success response envelope. On every 2xx response, request_id identifies the call (also mirrored in the Flashcat-Request-Id header) and data holds the endpoint-specific payload. Failure responses use a different shape — see ErrorResponse.

request_id
string
required

Unique ID for this request. Mirrored in the Flashcat-Request-Id response header. Include it when reporting issues.

Example:

"01HK8XQE3Z7JM2NTFQ5YJ8P9R4"

data
object
required

Endpoint-specific payload. See each operation's 200 response schema.