POST api/AssetAuditLog
Creates a new asset audit log.
Request Information
URI Parameters
None.
Body Parameters
The asset audit log model to create with.
AssetAuditLogDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| CreationDate | date |
None. |
|
| AssetId | globally unique identifier |
None. |
|
| EventType | AssetAuditEventTypeDto |
None. |
|
| UserId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "c0fe4d15-6b4d-437c-b39c-c739332ca759",
"CreationDate": "2025-12-16T09:50:22.9512878+00:00",
"AssetId": "600d4d38-623c-448f-8b17-4a73fd959e75",
"EventType": 0,
"UserId": "871d0882-6f31-4e0c-893b-d0b3de08ff27"
}
application/xml, text/xml
Sample:
<AssetAuditLogDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Design.Models"> <AssetId>600d4d38-623c-448f-8b17-4a73fd959e75</AssetId> <CreationDate>2025-12-16T09:50:22.9512878+00:00</CreationDate> <EventType>Create</EventType> <Id>c0fe4d15-6b4d-437c-b39c-c739332ca759</Id> <UserId>871d0882-6f31-4e0c-893b-d0b3de08ff27</UserId> </AssetAuditLogDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.