GET Neighborhoods

Gets all neighborhoods.

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "Name": "sample string 2",
    "ZipCodes": "sample string 3",
    "Island": "sample string 4"
  },
  {
    "ID": 1,
    "Name": "sample string 2",
    "ZipCodes": "sample string 3",
    "Island": "sample string 4"
  },
  {
    "ID": 1,
    "Name": "sample string 2",
    "ZipCodes": "sample string 3",
    "Island": "sample string 4"
  }
]

text/html

Sample:
[{"ID":1,"Name":"sample string 2","ZipCodes":"sample string 3","Island":"sample string 4"},{"ID":1,"Name":"sample string 2","ZipCodes":"sample string 3","Island":"sample string 4"},{"ID":1,"Name":"sample string 2","ZipCodes":"sample string 3","Island":"sample string 4"}]

application/xml, text/xml

Sample:
<ArrayOfNeighborhood xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PhysicianDirectoryWebService.Models">
  <Neighborhood>
    <ID>1</ID>
    <Island>sample string 4</Island>
    <Name>sample string 2</Name>
    <ZipCodes>sample string 3</ZipCodes>
  </Neighborhood>
  <Neighborhood>
    <ID>1</ID>
    <Island>sample string 4</Island>
    <Name>sample string 2</Name>
    <ZipCodes>sample string 3</ZipCodes>
  </Neighborhood>
  <Neighborhood>
    <ID>1</ID>
    <Island>sample string 4</Island>
    <Name>sample string 2</Name>
    <ZipCodes>sample string 3</ZipCodes>
  </Neighborhood>
</ArrayOfNeighborhood>