POST api/LocationMaps/AddressesAll

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
addresses
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "list": [
    {
      "Postcode": "sample string 1",
      "Radius": 2,
      "Id": 3
    },
    {
      "Postcode": "sample string 1",
      "Radius": 2,
      "Id": 3
    },
    {
      "Postcode": "sample string 1",
      "Radius": 2,
      "Id": 3
    }
  ]
}

application/xml, text/xml

Sample:
<Addresses xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Blackpool.WebClient.Api.Models">
  <list>
    <Address>
      <Id>3</Id>
      <Postcode>sample string 1</Postcode>
      <Radius>2</Radius>
    </Address>
    <Address>
      <Id>3</Id>
      <Postcode>sample string 1</Postcode>
      <Radius>2</Radius>
    </Address>
    <Address>
      <Id>3</Id>
      <Postcode>sample string 1</Postcode>
      <Radius>2</Radius>
    </Address>
  </list>
</Addresses>

application/x-www-form-urlencoded

Sample:

Sample not available.