GET api/Settings?viewname={viewname}
This method facilitates the get of a set of settings.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| viewname |
The viewname to get the settings for this view. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
The operation success as a boolean.
Setting| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| UserId | integer |
None. |
|
| GroupId | integer |
None. |
|
| Viewname | string |
None. |
|
| JSON | string |
None. |
|
| ErstellDat | date |
None. |
|
| ErstellUs | string |
None. |
|
| AendDat | date |
None. |
|
| AendUs | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"UserId": 1,
"GroupId": 1,
"Viewname": "sample string 2",
"JSON": "sample string 3",
"ErstellDat": "2026-04-07T13:25:59.3581182+02:00",
"ErstellUs": "sample string 4",
"AendDat": "2026-04-07T13:25:59.3581182+02:00",
"AendUs": "sample string 5"
}
application/xml, text/xml
Sample:
<Setting xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BestaendeWeb.Models"> <AendDat>2026-04-07T13:25:59.3581182+02:00</AendDat> <AendUs>sample string 5</AendUs> <ErstellDat>2026-04-07T13:25:59.3581182+02:00</ErstellDat> <ErstellUs>sample string 4</ErstellUs> <GroupId>1</GroupId> <Id>1</Id> <JSON>sample string 3</JSON> <UserId>1</UserId> <Viewname>sample string 2</Viewname> </Setting>