Audit Events
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.
Token-based authentication with required prefix "Token"
Query parameter content_type used to filter results based on specific conditions.
Limits the number of results returned in the response.
Query parameter object_id used to filter results based on specific conditions.
Query parameter page used to filter results based on specific conditions.
Query parameter sort used to filter results based on specific conditions.
Query parameter timestamp used to filter results based on specific conditions.
Filters records where timestamp is greater than the given value.
Filters records where timestamp is greater than or equal to the given value.
Filters records where timestamp is less than the given value.
Filters records where timestamp is less than or equal to the given value.
Query parameter user used to filter results based on specific conditions.
Successful response for status code 200.
GET /api/v1/remote/1/data-warehouse/audit-events/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
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-12-01T13:48:15.003Z",
"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"
}
]
}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.
Token-based authentication with required prefix "Token"
A UUID string identifying this Audit event.
Successful response for status code 200.
GET /api/v1/remote/1/data-warehouse/audit-events/{uuid}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
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-12-01T13:48:15.003Z",
"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?

