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": "a4548f00-de7c-4a08-883b-40cd57d15f00",
"CreationDate": "2025-12-06T05:26:37.7471527+00:00",
"AssetId": "2d252946-10a3-43e4-8d92-4e20954a95c5",
"EventType": 0,
"UserId": "e191d88f-9099-4e45-b156-8a55c000dd47"
}
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>2d252946-10a3-43e4-8d92-4e20954a95c5</AssetId> <CreationDate>2025-12-06T05:26:37.7471527+00:00</CreationDate> <EventType>Create</EventType> <Id>a4548f00-de7c-4a08-883b-40cd57d15f00</Id> <UserId>e191d88f-9099-4e45-b156-8a55c000dd47</UserId> </AssetAuditLogDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.