POST api/appeventlog/delete

Request Information

URI Parameters

None.

Body Parameters

AppEventLog
NameDescriptionTypeAdditional information
Id

integer

Required

EventSource

string

None.

EventType

integer

Required

EventTime

date

Required

Message

string

None.

Username

string

None.

EventId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "EventSource": "sample string 2",
  "EventType": 3,
  "EventTime": "2025-12-06T06:30:50.1947743+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-06T06:30:50.1947743+01:00</EventTime>
  <EventType>3</EventType>
  <Id>1</Id>
  <Message>sample string 5</Message>
  <Username>sample string 6</Username>
</AppEventLog>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>