GET api/customer/place
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of PlaceModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| CustomerId | integer |
None. |
|
| CreatorId | integer |
None. |
|
| PlaceName | string |
None. |
|
| Latitude | decimal number |
None. |
|
| Longitude | decimal number |
None. |
|
| Radius | decimal number |
None. |
|
| UserID | integer |
None. |
|
| CustomerID | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"CustomerId": 2,
"CreatorId": 3,
"PlaceName": "sample string 4",
"Latitude": 5.1,
"Longitude": 6.1,
"Radius": 7.1,
"UserID": 3,
"CustomerID": 2
},
{
"ID": 1,
"CustomerId": 2,
"CreatorId": 3,
"PlaceName": "sample string 4",
"Latitude": 5.1,
"Longitude": 6.1,
"Radius": 7.1,
"UserID": 3,
"CustomerID": 2
}
]
application/xml, text/xml
Sample:
<ArrayOfPlaceModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Saga.Kjorebok.Backend.Models">
<PlaceModel>
<CreatorId>3</CreatorId>
<CustomerID>2</CustomerID>
<CustomerId>2</CustomerId>
<ID>1</ID>
<Latitude>5.1</Latitude>
<Longitude>6.1</Longitude>
<PlaceName>sample string 4</PlaceName>
<Radius>7.1</Radius>
<UserID>3</UserID>
</PlaceModel>
<PlaceModel>
<CreatorId>3</CreatorId>
<CustomerID>2</CustomerID>
<CustomerId>2</CustomerId>
<ID>1</ID>
<Latitude>5.1</Latitude>
<Longitude>6.1</Longitude>
<PlaceName>sample string 4</PlaceName>
<Radius>7.1</Radius>
<UserID>3</UserID>
</PlaceModel>
</ArrayOfPlaceModel>