GET api/customer/place/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

PlaceModel
NameDescriptionTypeAdditional 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
}

application/xml, text/xml

Sample:
<PlaceModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Saga.Kjorebok.Backend.Models">
  <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>