POST api/DogInfos/GetDogInfoReport
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
Collection of AgentReportOutput| Name | Description | Type | Additional information |
|---|---|---|---|
| AgentCode | string |
None. |
|
| AgentName | string |
None. |
|
| p_count | integer |
None. |
|
| usercount | integer |
None. |
|
| return_count | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"AgentCode": "sample string 1",
"AgentName": "sample string 2",
"p_count": 3,
"usercount": 4,
"return_count": 5
},
{
"AgentCode": "sample string 1",
"AgentName": "sample string 2",
"p_count": 3,
"usercount": 4,
"return_count": 5
}
]
application/xml, text/xml
Sample:
<ArrayOfAgentReportOutput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DogApi.Models">
<AgentReportOutput>
<AgentCode>sample string 1</AgentCode>
<AgentName>sample string 2</AgentName>
<p_count>3</p_count>
<return_count>5</return_count>
<usercount>4</usercount>
</AgentReportOutput>
<AgentReportOutput>
<AgentCode>sample string 1</AgentCode>
<AgentName>sample string 2</AgentName>
<p_count>3</p_count>
<return_count>5</return_count>
<usercount>4</usercount>
</AgentReportOutput>
</ArrayOfAgentReportOutput>