POST api/appeventlog/preparenew

Request Information

URI Parameters

None.

Body Parameters

Collection of KeyValue
NameDescriptionTypeAdditional information
Id

integer

Required

Value

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Value": "sample string 2"
  },
  {
    "Id": 1,
    "Value": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfKeyValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models">
  <KeyValue>
    <Id>1</Id>
    <Value>sample string 2</Value>
  </KeyValue>
  <KeyValue>
    <Id>1</Id>
    <Value>sample string 2</Value>
  </KeyValue>
</ArrayOfKeyValue>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

AppEventLog
NameDescriptionTypeAdditional information
Id

integer

Required

EventSource

string

None.

EventType

integer

Required

EventTime

date

Required

Message

string

None.

Username

string

None.

EventId

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "EventSource": "sample string 2",
  "EventType": 3,
  "EventTime": "2025-12-06T05:52:13.6739216+01:00",
  "Message": "sample string 5",
  "Username": "sample string 6",
  "EventId": 1
}

application/xml, text/xml

Sample:
<AppEventLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models">
  <EventId>1</EventId>
  <EventSource>sample string 2</EventSource>
  <EventTime>2025-12-06T05:52:13.6739216+01:00</EventTime>
  <EventType>3</EventType>
  <Id>1</Id>
  <Message>sample string 5</Message>
  <Username>sample string 6</Username>
</AppEventLog>