POST api/appapiusagelog/keyvalue
Request Information
URI Parameters
None.
Body Parameters
AppApiUsageLogSelect| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| AuthKey | string |
None. |
|
| Endpoint | string |
None. |
|
| RequestTimeFrom | date |
None. |
|
| RequestTimeTo | date |
None. |
|
| ResponseTimeFrom | date |
None. |
|
| ResponseTimeTo | date |
None. |
|
| RecordsReturnedFrom | integer |
None. |
|
| RecordsReturnedTo | integer |
None. |
|
| CellsReturnedFrom | integer |
None. |
|
| CellsReturnedTo | integer |
None. |
|
| TotalStatementsFrom | integer |
None. |
|
| TotalStatementsTo | integer |
None. |
|
| TotalCostFrom | decimal number |
None. |
|
| TotalCostTo | decimal number |
None. |
|
| SortFieldDefault | string |
None. |
|
| Quicksearch | string |
None. |
|
| filterIsSet | boolean |
None. |
|
| resetFilter | boolean |
None. |
|
| TagIds | Collection of integer |
None. |
|
| TagFullMatch | boolean |
None. |
|
| WithTags | boolean |
None. |
|
| SaveCustomFilterName | string |
None. |
|
| PageSize | integer |
Required |
|
| PageIndex | integer |
Required |
|
| SortField | string |
None. |
|
| RequestFields | Collection of string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"AuthKey": "sample string 1",
"Endpoint": "sample string 2",
"RequestTimeFrom": "2026-09-18T10:30:40.8042404+02:00",
"RequestTimeTo": "2026-09-18T10:30:40.8042404+02:00",
"ResponseTimeFrom": "2026-09-18T10:30:40.8042404+02:00",
"ResponseTimeTo": "2026-09-18T10:30:40.8042404+02:00",
"RecordsReturnedFrom": 1,
"RecordsReturnedTo": 1,
"CellsReturnedFrom": 1,
"CellsReturnedTo": 1,
"TotalStatementsFrom": 1,
"TotalStatementsTo": 1,
"TotalCostFrom": 1.0,
"TotalCostTo": 1.0,
"SortFieldDefault": "sample string 3",
"Quicksearch": "sample string 4",
"filterIsSet": true,
"resetFilter": true,
"TagIds": [
1,
2
],
"TagFullMatch": true,
"WithTags": true,
"SaveCustomFilterName": "sample string 5",
"PageSize": 6,
"PageIndex": 7,
"SortField": "sample string 8",
"RequestFields": [
"sample string 1",
"sample string 2"
]
}
application/xml, text/xml
Sample:
<AppApiUsageLogSelect xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models">
<PageIndex>7</PageIndex>
<PageSize>6</PageSize>
<RequestFields xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</RequestFields>
<SortField>sample string 8</SortField>
<Quicksearch>sample string 4</Quicksearch>
<SaveCustomFilterName>sample string 5</SaveCustomFilterName>
<SortFieldDefault>sample string 3</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>
<resetFilter>true</resetFilter>
<AuthKey>sample string 1</AuthKey>
<CellsReturnedFrom>1</CellsReturnedFrom>
<CellsReturnedTo>1</CellsReturnedTo>
<Endpoint>sample string 2</Endpoint>
<Id>1</Id>
<RecordsReturnedFrom>1</RecordsReturnedFrom>
<RecordsReturnedTo>1</RecordsReturnedTo>
<RequestTimeFrom>2026-09-18T10:30:40.8042404+02:00</RequestTimeFrom>
<RequestTimeTo>2026-09-18T10:30:40.8042404+02:00</RequestTimeTo>
<ResponseTimeFrom>2026-09-18T10:30:40.8042404+02:00</ResponseTimeFrom>
<ResponseTimeTo>2026-09-18T10:30:40.8042404+02:00</ResponseTimeTo>
<TotalCostFrom>1</TotalCostFrom>
<TotalCostTo>1</TotalCostTo>
<TotalStatementsFrom>1</TotalStatementsFrom>
<TotalStatementsTo>1</TotalStatementsTo>
</AppApiUsageLogSelect>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of KeyValue| Name | Description | Type | Additional 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>