POST api/appdashboardwidget/keyvalue
Request Information
URI Parameters
None.
Body Parameters
AppDashboardWidgetSelect| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Active | integer |
None. |
|
| Title | string |
None. |
|
| WidgetType | integer |
None. |
|
| ContentHeaderTitle | string |
None. |
|
| ContentHeaderSubtitle | string |
None. |
|
| ContentHeaderIcon | string |
None. |
|
| ContentData | string |
None. |
|
| Width | integer |
None. |
|
| Height | integer |
None. |
|
| PositionX | integer |
None. |
|
| PositionY | integer |
None. |
|
| MinWidth | integer |
None. |
|
| MaxWidth | integer |
None. |
|
| MinHeight | integer |
None. |
|
| MaxHeight | integer |
None. |
|
| IsCustom | integer |
None. |
|
| LockedHeaderData | integer |
None. |
|
| LockedConfig | integer |
None. |
|
| LockedRestrictions | integer |
None. |
|
| LockedPosition | integer |
None. |
|
| LockedSize | integer |
None. |
|
| LockedActive | integer |
None. |
|
| Zusatzfeld1 | string |
None. |
|
| Zusatzfeld2 | string |
None. |
|
| Bemerkung | string |
None. |
|
| ForUserId | 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,
"Active": 1,
"Title": "sample string 1",
"WidgetType": 1,
"ContentHeaderTitle": "sample string 2",
"ContentHeaderSubtitle": "sample string 3",
"ContentHeaderIcon": "sample string 4",
"ContentData": "sample string 5",
"Width": 1,
"Height": 1,
"PositionX": 1,
"PositionY": 1,
"MinWidth": 1,
"MaxWidth": 1,
"MinHeight": 1,
"MaxHeight": 1,
"IsCustom": 1,
"LockedHeaderData": 1,
"LockedConfig": 1,
"LockedRestrictions": 1,
"LockedPosition": 1,
"LockedSize": 1,
"LockedActive": 1,
"Zusatzfeld1": "sample string 6",
"Zusatzfeld2": "sample string 7",
"Bemerkung": "sample string 8",
"ForUserId": 1,
"PageSize": 9,
"PageIndex": 10,
"SortField": "sample string 11",
"SortFieldDefault": "sample string 12",
"Quicksearch": "sample string 13",
"filterIsSet": true,
"TagIds": [
1,
2
],
"TagFullMatch": true,
"WithTags": true
}
application/xml, text/xml
Sample:
<AppDashboardWidgetSelect xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models">
<PageIndex>10</PageIndex>
<PageSize>9</PageSize>
<Quicksearch>sample string 13</Quicksearch>
<SortField>sample string 11</SortField>
<SortFieldDefault>sample string 12</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>
<Active>1</Active>
<Bemerkung>sample string 8</Bemerkung>
<ContentData>sample string 5</ContentData>
<ContentHeaderIcon>sample string 4</ContentHeaderIcon>
<ContentHeaderSubtitle>sample string 3</ContentHeaderSubtitle>
<ContentHeaderTitle>sample string 2</ContentHeaderTitle>
<ForUserId>1</ForUserId>
<Height>1</Height>
<Id>1</Id>
<IsCustom>1</IsCustom>
<LockedActive>1</LockedActive>
<LockedConfig>1</LockedConfig>
<LockedHeaderData>1</LockedHeaderData>
<LockedPosition>1</LockedPosition>
<LockedRestrictions>1</LockedRestrictions>
<LockedSize>1</LockedSize>
<MaxHeight>1</MaxHeight>
<MaxWidth>1</MaxWidth>
<MinHeight>1</MinHeight>
<MinWidth>1</MinWidth>
<PositionX>1</PositionX>
<PositionY>1</PositionY>
<Title>sample string 1</Title>
<WidgetType>1</WidgetType>
<Width>1</Width>
<Zusatzfeld1>sample string 6</Zusatzfeld1>
<Zusatzfeld2>sample string 7</Zusatzfeld2>
</AppDashboardWidgetSelect>
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>