Reverse GeoCoder:REST XML: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 17: | Line 17: | ||
&recs={MaxRecords} | &recs={MaxRecords} | ||
&t={TransmissionReference} | &t={TransmissionReference} | ||
&opt={Options} | |||
&format=xml | &format=xml | ||
</pre> | </pre> | ||
Line 41: | Line 42: | ||
<Longitude>string</Longitude> | <Longitude>string</Longitude> | ||
<Distance>string</Distance> | <Distance>string</Distance> | ||
<MelissaAddressKey>string</MelissaAddressKey> | |||
<MelissaAddressKeyBase>string</MelissaAddressKeyBase> | |||
</ResponseRecord> | </ResponseRecord> | ||
</Records> | </Records> |
Revision as of 23:21, 17 July 2020
Reverse GeoCoder Navigation | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||
| ||||||||||
| ||||||||||
| ||||||||||
Sample Code |
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} &opt={Options} &format=xml
XML Response
<ResponseArray> <Version>string</Version> <TransmissionReference>string</TransmissionReference> <TransmissionResults>string</TransmissionResults> <Results>string</Results> <TotalRecords>string</TotalRecords> <Records> <ResponseRecord> <AddressLine1>string</AddressLine1> <SuiteName>string</SuiteName> <SuiteCount>string</SuiteCount> <City>string</City> <State>string</State> <PostalCode>string</PostalCode> <AddressKey>string</AddressKey> <Latitude>string</Latitude> <Longitude>string</Longitude> <Distance>string</Distance> <MelissaAddressKey>string</MelissaAddressKey> <MelissaAddressKeyBase>string</MelissaAddressKeyBase> </ResponseRecord> </Records> </ResponseArray>