TEASEDocs
API ReferencePages & Publish

List recent page-edit audit entries

Returns the most recent audit entries for your account, newest first, recording who changed what across the page-editing workflow. Requires a read-scoped key.

Authorization

bearerAuth
AuthorizationBearer <token>

Your al_live_<prefix>_<secret> API key. Mint and manage keys in the dashboard.

In: header

Query Parameters

limit?integer

Maximum number of entries to return.

Range1 <= value <= 500
Default100

Response Body

application/json

GET
/api/admin/audit
curl -X GET "https://example.com/api/admin/audit"
{  "items": [    {      "id": 4821,      "ts": 1719767000,      "actor": "dasha@example.com",      "action": "notification_patch",      "payload": {        "domain": "onlydasha.com",        "fields": [          "title",          "body"        ]      }    },    {      "id": 4820,      "ts": 1719766800,      "actor": "dasha@example.com",      "action": "publish",      "payload": {        "tiers_updated": true,        "segments_updated": true      }    }  ]}