Audit logs

List audit logs

get

Retrieve a collection of audit logs.

Authorizations
Responses
curl -L \
  --url 'https://HOSTNAME:8887/api/audit_logs' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "count": 100,
  "items": [
    {
      "id": "NzAwNTUxOTA5NzczMTQ4MTYw",
      "created_at": "2017-07-21T17:32:28Z",
      "source": "text",
      "ip": "2017-07-21T17:32:28Z",
      "action": "CREATE",
      "object_type": "ALLOWED_COUNTRY_CODES",
      "user_name": "text",
      "object_name": "text",
      "old_state": "text",
      "new_state": "text"
    }
  ]
}

Was this helpful?