POST api/System/getSystemInfo
系统设置详情
Request Information
URI Parameters
None.
Body Parameters
getSystemInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| syscode | string |
None. |
|
| uid |
账号id |
integer |
None. |
| token |
token |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"syscode": "sample string 1",
"uid": 2,
"token": "sample string 3"
}
application/xml, text/xml
Sample:
<getSystemInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LyWebApi.Controllers"> <token xmlns="http://schemas.datacontract.org/2004/07/LyWebApi.Models">sample string 3</token> <uid xmlns="http://schemas.datacontract.org/2004/07/LyWebApi.Models">2</uid> <syscode>sample string 1</syscode> </getSystemInfo>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
getSystemInfoResult| Name | Description | Type | Additional information |
|---|---|---|---|
| ischecking | integer |
None. |
|
| Code | integer |
None. |
|
| Msg | string |
None. |
|
| text | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"text": "sample string 1",
"ischecking": 1,
"Code": 2,
"Msg": "sample string 3"
}
application/xml, text/xml
Sample:
<getSystemInfoResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LyWebApi.Controllers"> <Code xmlns="http://schemas.datacontract.org/2004/07/LyWebApi.Models">2</Code> <Msg xmlns="http://schemas.datacontract.org/2004/07/LyWebApi.Models">sample string 3</Msg> <ischecking>1</ischecking> <text>sample string 1</text> </getSystemInfoResult>