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": "8085a623-d900-4585-af68-0eb97cbe88c5",
"UserId": "7be14f84-7bb5-450a-9532-6de80b92a86e",
"PriceTableId": 3,
"AuditEventType": 0,
"CreationDate": "2025-12-16T09:49:45.6638197+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-16T09:49:45.6638197+00:00</CreationDate> <Id>8085a623-d900-4585-af68-0eb97cbe88c5</Id> <PriceTableId>3</PriceTableId> <UserId>7be14f84-7bb5-450a-9532-6de80b92a86e</UserId> </PriceTableAuditLogDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.