Skip to content

Your API key

Create one in the portal under API keys.

Browse the API

API reference

Audit log

A paged, read-only history of everything that has changed in the organisation.

1 endpoint

GET/api/v1/audit

Read 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

  • pageOptional

    numberPage number, starting at 1.

    default 1 · min 1

  • limitOptional

    numberEntries per page.

    default 50 · min 1 · max 200

  • actionOptional

    stringLimit to one action, such as user.updated.

    example: "user.updated"

  • entity_typeOptional

    one 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"