POST api/sysConfig/SetAppConifg
Request Information
URI Parameters
None.
Body Parameters
SetAppConfigReq| Name | Description | Type | Additional information |
|---|---|---|---|
| listCarousel | Collection of string |
None. |
|
| myImage | string |
None. |
|
| sysAppCustomService | string |
None. |
|
| sysAppOrderLineCount | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"listCarousel": [
"sample string 1",
"sample string 2"
],
"myImage": "sample string 1",
"sysAppCustomService": "sample string 2",
"sysAppOrderLineCount": "sample string 3"
}
application/xml, text/xml
Sample:
<SetAppConfigReq xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Football.WebApi.Controllers">
<listCarousel xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</listCarousel>
<myImage>sample string 1</myImage>
<sysAppCustomService>sample string 2</sysAppCustomService>
<sysAppOrderLineCount>sample string 3</sysAppOrderLineCount>
</SetAppConfigReq>
application/x-www-form-urlencoded
Sample:
Sample not available.
text/plain
Sample:
Sample not available.
Response Information
Resource Description
ResultMsg| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| message | string |
None. |
|
| code | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"message": "sample string 2",
"code": 3
}
application/xml, text/xml
Sample:
<ResultMsg xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Football.Model"> <Code>3</Code> <Message>sample string 2</Message> <Success>true</Success> </ResultMsg>