POST api/applog/select

Request Information

URI Parameters

None.

Body Parameters

AppLogSelect
NameDescriptionTypeAdditional information
Id

integer

None.

JobId

integer

None.

TimestampFrom

date

None.

TimestampTo

date

None.

Message

string

None.

PageSize

integer

Required

PageIndex

integer

Required

SortField

string

None.

SortFieldDefault

string

None.

Quicksearch

string

None.

filterIsSet

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "JobId": 1,
  "TimestampFrom": "2025-10-25T23:08:32.5481953+02:00",
  "TimestampTo": "2025-10-25T23:08:32.5481953+02:00",
  "Message": "sample string 1",
  "PageSize": 2,
  "PageIndex": 3,
  "SortField": "sample string 4",
  "SortFieldDefault": "sample string 5",
  "Quicksearch": "sample string 6",
  "filterIsSet": true
}

application/xml, text/xml

Sample:
<AppLogSelect xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models">
  <PageIndex>3</PageIndex>
  <PageSize>2</PageSize>
  <Quicksearch>sample string 6</Quicksearch>
  <SortField>sample string 4</SortField>
  <SortFieldDefault>sample string 5</SortFieldDefault>
  <filterIsSet>true</filterIsSet>
  <Id>1</Id>
  <JobId>1</JobId>
  <Message>sample string 1</Message>
  <TimestampFrom>2025-10-25T23:08:32.5481953+02:00</TimestampFrom>
  <TimestampTo>2025-10-25T23:08:32.5481953+02:00</TimestampTo>
</AppLogSelect>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'AppLogSelect'.

Response Information

Resource Description

AppLogQueryResult
NameDescriptionTypeAdditional information
Entries

Collection of AppLogDisplay

None.

RecordsTotal

integer

Required

PageSize

integer

Required

PageIndex

integer

Required

SortField

string

None.

Response Formats

application/json, text/json

Sample:

Sample not available.