POST api/DogInfos/GetCustomerDogList
Request Information
URI Parameters
None.
Body Parameters
GetDogInfoInput| Name | Description | Type | Additional information |
|---|---|---|---|
| Page | integer |
None. |
|
| PageSize | integer |
None. |
|
| QueryData | string |
None. |
|
| StartDate | string |
None. |
|
| EndDate | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Page": 1,
"PageSize": 2,
"QueryData": "sample string 3",
"StartDate": "sample string 4",
"EndDate": "sample string 5"
}
application/xml, text/xml
Sample:
<GetDogInfoInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DogApi.Models"> <EndDate>sample string 5</EndDate> <Page>1</Page> <PageSize>2</PageSize> <QueryData>sample string 3</QueryData> <StartDate>sample string 4</StartDate> </GetDogInfoInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PageDtosOfYun_CustomerDog| Name | Description | Type | Additional information |
|---|---|---|---|
| count | integer |
None. |
|
| data | Collection of Yun_CustomerDog |
None. |
Response Formats
application/json, text/json
Sample:
{
"count": 1,
"data": [
{
"dogNo": "sample string 1",
"cname": "sample string 2",
"isAllow": 3
},
{
"dogNo": "sample string 1",
"cname": "sample string 2",
"isAllow": 3
}
]
}
application/xml, text/xml
Sample:
<PageDtosOfYun_CustomerDogBvqt6UdY xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DogApi.Models">
<count>1</count>
<data>
<Yun_CustomerDog>
<cname>sample string 2</cname>
<dogNo>sample string 1</dogNo>
<isAllow>3</isAllow>
</Yun_CustomerDog>
<Yun_CustomerDog>
<cname>sample string 2</cname>
<dogNo>sample string 1</dogNo>
<isAllow>3</isAllow>
</Yun_CustomerDog>
</data>
</PageDtosOfYun_CustomerDogBvqt6UdY>