GET api/AppSetting/GetAppSettings?from={from}&pageSize={pageSize}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| from | integer |
Default value is 0 |
|
| pageSize | integer |
Default value is 10 |
Body Parameters
None.
Response Information
Resource Description
Collection of AppSetting| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Name | string |
None. |
|
| Value | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Name": "sample string 2",
"Value": "sample string 3"
},
{
"Id": 1,
"Name": "sample string 2",
"Value": "sample string 3"
}
]
multipart/form-data
Sample:
[{"Id":1,"Name":"sample string 2","Value":"sample string 3"},{"Id":1,"Name":"sample string 2","Value":"sample string 3"}]