Setup Audit

List

Retrieve a paginated list of Setup Audit records. Supports filtering, sorting, and search.

get/api/cp/setup/audit

Response

Successful response

idinteger

Id

account_idinteger

Account Id

user_idinteger

User Id

contact_idinteger

Contact Id

ipstring ipv4

Ip

dtstring date-time

Dt

pkstring

Pk

actionstring

Action

tablestring

Table

msgstring

Msg

datastring

Data

Example response

[
  {
    "id": 12345,
    "account_id": 1,
    "user_id": 1,
    "contact_id": 1,
    "ip": "192.168.1.1",
    "dt": "2025-01-17T10:30:00Z",
    "pk": "example_pk",
    "action": "example_action",
    "table": "example_table",
    "msg": "example_msg",
    "data": "Sample data text content"
  }
]

Changes