Reverse GeoCoder:Example Request: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
{{ ReverseGeoCoderNav | |||
|RequestCollapse= | |||
{ | }} | ||
{ | |||
| | |||
Line 116: | Line 66: | ||
[[Category:Reverse GeoCoder | [[Category:Reverse GeoCoder]] | ||
[[Category:Reference]] | [[Category:Reference]] |
Revision as of 22:56, 10 March 2015
Reverse GeoCoder Navigation | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||
| ||||||||||
| ||||||||||
| ||||||||||
Sample Code |
The following requests detail the possible elements and general format of the four possible protocols.
JSON Request
{ "RequestArray": { "CustomerId":"string", "Latitude":"string", "Longitude":"string", "MaxDistance":"string", "MaxRecords":"string", "TransmissionReference":"string" } }
REST Request
There is no recordID element because a REST request can only submit one record per request:
http://ReverseGeo.melissadata.net/V3/WEB/ReverseGeoCode/doLookup ?id={CustomerId} &lat={Latitude} &long={Longitude} &dist={MaxDistance} &recs={MaxRecords} &t={TransmissionReference}
SOAP Request
Dim Request As New ReverseGeo.Request Dim Response As New ReverseGeo.Response Request.CustomerId = string Request.TransmissionReference = string Request.Latitude = string Request.Longitude = string Request.MaxDistance = string Request.MaxRecords = string ReverseGeoClient = New ReverseGeo.Service Response = ReverseGeoClient.doLookUp(Request) ReverseGeoClient.Dispose()
XML Request
<RequestArray> <CustomerID>string</CustomerID> <Latitude>string</Latitude> <Longitude>string</Longitude> <MaxDistance>string</MaxDistance> <MaxRecords>string</MaxRecords> <TransmissionReference>string</TransmissionReference> </RequestArray>