POST api/PriceTableAuditLog
Creates a price table audit log.
Request Information
URI Parameters
None.
Body Parameters
The model to create with.
PriceTableAuditLogDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| UserId | globally unique identifier |
Required |
|
| PriceTableId | integer |
Required |
|
| AuditEventType | PriceTableAuditEventTypeDto |
None. |
|
| CreationDate | date |
Required |
|
| Comment | string |
Required String length: inclusive between 0 and 250 |
Request Formats
application/json, text/json
Sample:
{
"Id": "c9ce6863-fec2-46a3-9a47-9669ff565e32",
"UserId": "c9d04692-34f1-4046-9d90-56b874ecabbc",
"PriceTableId": 3,
"AuditEventType": 0,
"CreationDate": "2025-12-06T05:26:24.847214+00:00",
"Comment": "sample string 5"
}
application/xml, text/xml
Sample:
<PriceTableAuditLogDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Design.Models"> <AuditEventType>Create</AuditEventType> <Comment>sample string 5</Comment> <CreationDate>2025-12-06T05:26:24.847214+00:00</CreationDate> <Id>c9ce6863-fec2-46a3-9a47-9669ff565e32</Id> <PriceTableId>3</PriceTableId> <UserId>c9d04692-34f1-4046-9d90-56b874ecabbc</UserId> </PriceTableAuditLogDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.