<?xml version="1.0" encoding="UTF-8"?>
<application
xmlns="http://wadl.dev.java.net/2009/02"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<resources base="https://api.precisely.com">
<resource path="/neighborhoods/v1">
<resource path="/place/bylocation">
<method name="GET">
<request>
<param name="longitude" style="query" type="xs:string" required="true"/>
<param name="latitude" style="query" type="xs:string" required="true"/>
<param name="levelHint" style="query" type="xs:string" />
</request>
<response>
<representation mediaType="application/json" element="locations"/>
<fault status="400" mediaType="application/json" element="errors"/>
</response>
</method>
</resource>
</resource>
</resources>
</application>