POST api/appvwcustomsettings/keyvalue
Request Information
URI Parameters
None.
Body Parameters
AppVwCustomSettingsSelect| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| EntityName | string |
None. |
|
| ViewContextNr | integer |
None. |
|
| ViewDisplayName | string |
None. |
|
| ViewDescription | string |
None. |
|
| ViewColumns | string |
None. |
|
| ViewSortColumns | string |
None. |
|
| DisplayOrder | integer |
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,
"EntityName": "sample string 1",
"ViewContextNr": 1,
"ViewDisplayName": "sample string 2",
"ViewDescription": "sample string 3",
"ViewColumns": "sample string 4",
"ViewSortColumns": "sample string 5",
"DisplayOrder": 1,
"PageSize": 6,
"PageIndex": 7,
"SortField": "sample string 8",
"SortFieldDefault": "sample string 9",
"Quicksearch": "sample string 10",
"filterIsSet": true,
"TagIds": [
1,
2
],
"TagFullMatch": true,
"WithTags": true
}
application/xml, text/xml
Sample:
<AppVwCustomSettingsSelect 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>
<Quicksearch>sample string 10</Quicksearch>
<SortField>sample string 8</SortField>
<SortFieldDefault>sample string 9</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>
<DisplayOrder>1</DisplayOrder>
<EntityName>sample string 1</EntityName>
<ViewColumns>sample string 4</ViewColumns>
<ViewContextNr>1</ViewContextNr>
<ViewDescription>sample string 3</ViewDescription>
<ViewDisplayName>sample string 2</ViewDisplayName>
<ViewSortColumns>sample string 5</ViewSortColumns>
<id>1</id>
</AppVwCustomSettingsSelect>
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>