POST api/applog/keyvalue

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.

TagIds

Collection of integer

None.

TagFullMatch

boolean

None.

WithTags

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "JobId": 1,
  "TimestampFrom": "2025-12-06T06:30:41.0262249+01:00",
  "TimestampTo": "2025-12-06T06:30:41.0262249+01:00",
  "Message": "sample string 1",
  "PageSize": 2,
  "PageIndex": 3,
  "SortField": "sample string 4",
  "SortFieldDefault": "sample string 5",
  "Quicksearch": "sample string 6",
  "filterIsSet": true,
  "TagIds": [
    1,
    2
  ],
  "TagFullMatch": true,
  "WithTags": 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>
  <TagFullMatch>true</TagFullMatch>
  <TagIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </TagIds>
  <WithTags>true</WithTags>
  <filterIsSet>true</filterIsSet>
  <Id>1</Id>
  <JobId>1</JobId>
  <Message>sample string 1</Message>
  <TimestampFrom>2025-12-06T06:30:41.0262249+01:00</TimestampFrom>
  <TimestampTo>2025-12-06T06:30:41.0262249+01:00</TimestampTo>
</AppLogSelect>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of KeyValue
NameDescriptionTypeAdditional information
Id

integer

Required

Value

string

None.

Response 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>