GET api/Weather/getjuziimg
Request Information
URI Parameters
None.
Body Parameters
BaseListPost| Name | Description | Type | Additional information |
|---|---|---|---|
| skip |
跳过多少条 |
integer |
None. |
| limit |
取多少条 |
integer |
None. |
| uid |
账号id |
integer |
None. |
| token |
token |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"skip": 1,
"limit": 2,
"uid": 3,
"token": "sample string 4"
}
application/xml, text/xml
Sample:
<BaseListPost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LyWebApi.Models"> <token>sample string 4</token> <uid>3</uid> <limit>2</limit> <skip>1</skip> </BaseListPost>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
artqrcodeListRes| Name | Description | Type | Additional information |
|---|---|---|---|
| list | Collection of artqrcodeListItem |
None. |
|
| Code | integer |
None. |
|
| Msg | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"list": [
{
"id": 1,
"qr_qrids": "sample string 2",
"qrname": "sample string 3",
"url": "sample string 4"
},
{
"id": 1,
"qr_qrids": "sample string 2",
"qrname": "sample string 3",
"url": "sample string 4"
}
],
"Code": 1,
"Msg": "sample string 2"
}
application/xml, text/xml
Sample:
<artqrcodeListRes 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">1</Code>
<Msg xmlns="http://schemas.datacontract.org/2004/07/LyWebApi.Models">sample string 2</Msg>
<list>
<artqrcodeListItem>
<id>1</id>
<qr_qrids>sample string 2</qr_qrids>
<qrname>sample string 3</qrname>
<url>sample string 4</url>
</artqrcodeListItem>
<artqrcodeListItem>
<id>1</id>
<qr_qrids>sample string 2</qr_qrids>
<qrname>sample string 3</qrname>
<url>sample string 4</url>
</artqrcodeListItem>
</list>
</artqrcodeListRes>