POST api/{projectID}/NeighborhoodList
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| projectID | integer |
Required |
Body Parameters
NeighborhoodRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| district | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"district": "sample string 1"
}
application/xml, text/xml
Sample:
<NeighborhoodRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppKobi.WebApi"> <district>sample string 1</district> </NeighborhoodRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of Neighborhood| Name | Description | Type | Additional information |
|---|---|---|---|
| neighborhood | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"neighborhood": "sample string 1"
},
{
"neighborhood": "sample string 1"
}
]
application/xml, text/xml
Sample:
<ArrayOfNeighborhood xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppKobi.WebApi">
<Neighborhood>
<neighborhood>sample string 1</neighborhood>
</Neighborhood>
<Neighborhood>
<neighborhood>sample string 1</neighborhood>
</Neighborhood>
</ArrayOfNeighborhood>