Audit Events

get

This method returns details about an audit event, including the event's UUID, user information (email, name), timestamp, IP address, accessed URL, query parameters, post data, and request headers. Audit events are used to track user actions and system changes for security and compliance purposes.

Authorizations
Query parameters
content_typeintegerOptional

Query parameter content_type used to filter results based on specific conditions.

limitintegerOptional

Limits the number of results returned in the response.

object_idintegerOptional

Query parameter object_id used to filter results based on specific conditions.

pageintegerOptional

Query parameter page used to filter results based on specific conditions.

sortstringOptional

Query parameter sort used to filter results based on specific conditions.

timestampstring · date-timeOptional

Query parameter timestamp used to filter results based on specific conditions.

timestamp__gtstring · date-timeOptional

Filters records where timestamp is greater than the given value.

timestamp__gtestring · date-timeOptional

Filters records where timestamp is greater than or equal to the given value.

timestamp__ltstring · date-timeOptional

Filters records where timestamp is less than the given value.

timestamp__ltestring · date-timeOptional

Filters records where timestamp is less than or equal to the given value.

userintegerOptional

Query parameter user used to filter results based on specific conditions.

Responses
200

Successful response for status code 200.

application/json
get
GET /api/v1/remote/1/data-warehouse/audit-events/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
200

Successful response for status code 200.

{
  "count": 123,
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2",
  "results": [
    {
      "content": null,
      "content_type": 1,
      "headers": null,
      "object_id": 1,
      "post_data": null,
      "query_params": null,
      "remote_addr": "text",
      "timestamp": "2025-08-29T17:14:13.260Z",
      "url": "https://example.com",
      "user": {
        "attributes": "text",
        "attributes_kwargs": "text",
        "avatar": "text",
        "call_allowed": "text",
        "date_joined": "text",
        "date_of_birth": "text",
        "email": "[email protected]",
        "email_allowed": "text",
        "first_name": "text",
        "gender": "text",
        "groups": "text",
        "id": "text",
        "is_active": "text",
        "is_anonymized": "text",
        "is_staff": "text",
        "is_superuser": "text",
        "language_code": "text",
        "last_login": "text",
        "last_name": "text",
        "localized_attributes": "text",
        "localized_attributes_kwargs": "text",
        "modified_date": "text",
        "phone": "text",
        "pk": 1,
        "sms_allowed": "text",
        "user_permissions": "text",
        "user_type": "text",
        "username": "text"
      },
      "uuid": "123e4567-e89b-12d3-a456-426614174000"
    }
  ]
}
get

This method returns details about an audit event, including the event's UUID, user information (email, name), timestamp, IP address, accessed URL, query parameters, post data, and request headers. Audit events are used to track user actions and system changes for security and compliance purposes. This endpoint retrieves a specific record by its unique identifier.

Authorizations
Path parameters
uuidstring · uuidRequired

A UUID string identifying this Audit event.

Responses
200

Successful response for status code 200.

application/json
get
GET /api/v1/remote/1/data-warehouse/audit-events/{uuid}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
200

Successful response for status code 200.

{
  "content": null,
  "content_type": 1,
  "headers": null,
  "object_id": 1,
  "post_data": null,
  "query_params": null,
  "remote_addr": "text",
  "timestamp": "2025-08-29T17:14:13.260Z",
  "url": "https://example.com",
  "user": {
    "attributes": "text",
    "attributes_kwargs": "text",
    "avatar": "text",
    "call_allowed": "text",
    "date_joined": "text",
    "date_of_birth": "text",
    "email": "[email protected]",
    "email_allowed": "text",
    "first_name": "text",
    "gender": "text",
    "groups": "text",
    "id": "text",
    "is_active": "text",
    "is_anonymized": "text",
    "is_staff": "text",
    "is_superuser": "text",
    "language_code": "text",
    "last_login": "text",
    "last_name": "text",
    "localized_attributes": "text",
    "localized_attributes_kwargs": "text",
    "modified_date": "text",
    "phone": "text",
    "pk": 1,
    "sms_allowed": "text",
    "user_permissions": "text",
    "user_type": "text",
    "username": "text"
  },
  "uuid": "123e4567-e89b-12d3-a456-426614174000"
}

Was this helpful?