POST api/assetAuditLog/select
Retrieves a list of asset audit logs that match the criteria.
Request Information
URI Parameters
None.
Body Parameters
The criteria model to filter asset audit logs by.
AssetAuditLogFilterCriteria| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| AssetId | string |
None. |
|
| EventType | AssetAuditEventTypeDto |
None. |
|
| UserId | globally unique identifier |
None. |
|
| StartDate | date |
None. |
|
| EndDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "49cfbc98-982b-4347-8156-c2a7c7281f84",
"AssetId": "sample string 1",
"EventType": 0,
"UserId": "0cbc67b0-26d4-4b03-b7f2-95e8761a29f9",
"StartDate": "2025-12-06T05:25:47.4223745+00:00",
"EndDate": "2025-12-06T05:25:47.4223745+00:00"
}
application/xml, text/xml
Sample:
<AssetAuditLogFilterCriteria xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Design.Models.FilterCriteria"> <AssetId>sample string 1</AssetId> <EndDate>2025-12-06T05:25:47.4223745+00:00</EndDate> <EventType>Create</EventType> <Id>49cfbc98-982b-4347-8156-c2a7c7281f84</Id> <StartDate>2025-12-06T05:25:47.4223745+00:00</StartDate> <UserId>0cbc67b0-26d4-4b03-b7f2-95e8761a29f9</UserId> </AssetAuditLogFilterCriteria>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.