v1

latestOpenAPI 3.1.02026-07-2210284274.4 KB
Policy Registry

Policy revision history

Retrieve the edit history for a policy. Each revision records who made the change, a summary, and whether it was a rollback.

get/api/policies/history

Query parameters

policy_idstring required
Example:gdpr_consent
limitinteger

Results per page (max 100, default 20)

Results per page (max 100, default 20)

offsetinteger

Pagination offset (default 0)

Pagination offset (default 0)

Response

Revision history

policy_idstring required
totalinteger required

Example response

{
  "policy_id": "gdpr_consent",
  "total": 3,
  "revisions": [
    {
      "revision_number": 2,
      "editor_name": "Pinnacle Media",
      "edit_summary": "Clarified consent requirements for minors",
      "created_at": "2026-03-01T12:34:56.000Z"
    }
  ]
}