<?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="/geolocation/v1">
<resource path="/location/byipaddress">
<method name="GET">
<request>
<param name="ipAddress" style="query" type="xs:string" required="true"/>
</request>
<response>
<representation mediaType="application/json" element="location"/>
<fault status="400" mediaType="application/json" element="errors"/>
</response>
</method>
</resource>
<resource path="/location/byaccesspoint">
<method name="GET">
<request>
<param name="mac" style="query" type="xs:string"/>
<param name="ssid" style="query" type="xs:string"/>
<param name="rsid" style="query" type="xs:string"/>
<param name="speed" style="query" type="xs:string"/>
<param name="accessPoint" style="query" type="xs:string"/>
</request>
<response>
<representation mediaType="application/json" element="location"/>
<fault status="400" mediaType="application/json" element="errors"/>
</response>
</method>
</resource>
</resource>
</resources>
</application>