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.
Query parameters
Filter by version ID (or multiple IDs, comma-separated). Use together with include_snapshot=true to fetch a single entry with its full snapshot.
Filter entries with a version ID greater than or equal to this value.
Filter entries with a version ID less than or equal to this value.
Free-text search across the entry, including the object snapshot.
Filter by object type (or multiple types, comma-separated). Currently tracked types are hook, schema, queue, rule, email_template, trigger, workspace.
Filter by object ID (or multiple IDs, comma-separated).
Filter by version event type (or multiple values, comma-separated).
Filter by modifier user ID (or multiple IDs, comma-separated).
Filter by changed field names (or multiple fields, comma-separated). Returns entries where any of the specified fields changed.
Filter entries created after this timestamp.
Filter entries created before this timestamp.
Include the full object snapshot in each entry. Excluded by default for performance.
Page number for pagination.
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.