PUT api/customer/place/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

PlaceInputModelNew
NameDescriptionTypeAdditional information
PlaceName

string

None.

Latitude

decimal number

None.

Longitude

decimal number

None.

Radius

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "PlaceName": "sample string 1",
  "Latitude": 2.1,
  "Longitude": 3.1,
  "Radius": 4.1
}

application/xml, text/xml

Sample:
<PlaceInputModelNew xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Saga.Kjorebok.Backend.Models">
  <Latitude>2.1</Latitude>
  <Longitude>3.1</Longitude>
  <PlaceName>sample string 1</PlaceName>
  <Radius>4.1</Radius>
</PlaceInputModelNew>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Object

None.

Response Formats

application/json, text/json

Sample:
{}

application/xml, text/xml

Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />