GET api/Public/LocationHot?Domain={Domain}&CurrentPage={CurrentPage}&RowPerPage={RowPerPage}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Domain | string |
Required |
|
| CurrentPage | integer |
None. |
|
| RowPerPage | integer |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of LocationListModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Name | string |
None. |
|
| Amount | integer |
None. |
|
| ImageUrl | string |
None. |
|
| ProvinceId | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"name": "sample string 2",
"amount": 3,
"imageUrl": "sample string 4",
"provinceId": 5
},
{
"id": 1,
"name": "sample string 2",
"amount": 3,
"imageUrl": "sample string 4",
"provinceId": 5
}
]
application/xml, text/xml
Sample:
<ArrayOfLocationListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgencyWebAPI.Models.Public">
<LocationListModel>
<Amount>3</Amount>
<Id>1</Id>
<ImageUrl>sample string 4</ImageUrl>
<Name>sample string 2</Name>
<ProvinceId>5</ProvinceId>
</LocationListModel>
<LocationListModel>
<Amount>3</Amount>
<Id>1</Id>
<ImageUrl>sample string 4</ImageUrl>
<Name>sample string 2</Name>
<ProvinceId>5</ProvinceId>
</LocationListModel>
</ArrayOfLocationListModel>