GET
/api/v1/auditRead the audit log
A paged, newest-first history of every change, including changes made through this API.
audit:readplan feature: audit_log
Parameters
Query string
pageOptionalnumberPage number, starting at 1.
default 1 · min 1
limitOptionalnumberEntries per page.
default 50 · min 1 · max 200
actionOptionalstringLimit to one action, such as user.updated.
example: "user.updated"
entity_typeOptionalone ofLimit to one kind of record.
one of: user, template, department, rule, banner, tenant, settings, api_key
Example response
json
{
"entries": [
{
"id": 9021,
"action": "user.updated",
"entity_type": "user",
"entity_id": "7c3f2b1a-0d4e-4f5a-8b9c-1d2e3f4a5b6c",
"actor": "Autumn rollout (API key)",
"details": {
"email": "alex.morgan@acme.com"
},
"created_at": "2026-09-25T09:41:02.000Z"
}
],
"total": 412,
"page": 1,
"limit": 50
}Copy and paste
curl -X GET "https://api.usesigned.co.uk/api/v1/audit" \
-H "X-API-Key: $SIGNED_API_KEY"