Configuration Changelog

List configuration changelog

List configuration change history for the authenticated user's organization.

Returns paginated changelog entries sorted by version_id descending (most recent first). By default, the snapshot field is excluded for performance — use include_snapshot=true to include full object snapshots.

Only available to admin and organization group admin users — returns 403 otherwise.

get/api/v1/configuration_changelog

Query parameters

version_idstring

Filter by version ID (or multiple IDs, comma-separated). Use together with include_snapshot=true to fetch a single entry with its full snapshot.

version_id_range_mininteger

Filter entries with a version ID greater than or equal to this value.

version_id_range_maxinteger

Filter entries with a version ID less than or equal to this value.

qstring

Free-text search across the entry, including the object snapshot.

object_typestring

Filter by object type (or multiple types, comma-separated). Currently tracked types are hook, schema, queue, rule, email_template, trigger, workspace.

object_idstring

Filter by object ID (or multiple IDs, comma-separated).

version_event'create' | 'update' | 'delete'

Filter by version event type (or multiple values, comma-separated).

modifier_idstring

Filter by modifier user ID (or multiple IDs, comma-separated).

changed_fieldsstring

Filter by changed field names (or multiple fields, comma-separated). Returns entries where any of the specified fields changed.

version_created_at_afterstring date-time

Filter entries created after this timestamp.

version_created_at_beforestring date-time

Filter entries created before this timestamp.

include_snapshotboolean

Include the full object snapshot in each entry. Excluded by default for performance.

pageinteger

Page number for pagination.

page_sizeinteger

Maximum number of results per page (between 1 and 100, defaults to 20).

Response

OK

Example response

{
  "results": [
    {
      "version_id": 1590,
      "tenant": "shared",
      "organization_id": 1,
      "object_type": "hook",
      "object_id": 48,
      "version_event": "update",
      "version_created_at": "2026-03-19T11:19:06.231811+00:00",
      "modifier_id": 5,
      "changed_fields": [
        "name",
        "config"
      ],
      "name": "My Hook",
      "created_at": "2026-03-01T10:00:00+00:00",
      "modified_at": "2026-03-19T11:19:06+00:00",
      "creator_id": 5,
      "description": "Exports data to ERP"
    }
  ]
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.