Difference between revisions of "Reverse GeoCoder:Example Request"

From Melissa Data Wiki
Jump to navigation Jump to search
Line 34: Line 34:
&recs={MaxRecords}
&recs={MaxRecords}
&t={TransmissionReference}
&t={TransmissionReference}
</pre>
==SOAP Request==
<pre>
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()
</pre>
</pre>



Revision as of 22:00, 7 March 2019

← Reverse GeoCoder

Reverse GeoCoder Navigation
Introduction
Licensing
Input/Output
doLookup
  ↳  Request
  ↳  Response
doLookupPostalCodes
  ↳  Request
  ↳  Response
doLookupFromList
  ↳  Request
  ↳  Response
Examples
REST XML
REST JSON
JSON
XML
Result Codes
Result Code Use
Reverse GeoCoder Result Codes
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}


XML Request

<RequestArray>
  <CustomerID>string</CustomerID>
  <Latitude>string</Latitude>
  <Longitude>string</Longitude>
  <MaxDistance>string</MaxDistance>
  <MaxRecords>string</MaxRecords>
  <TransmissionReference>string</TransmissionReference>
</RequestArray>