Difference between revisions of "Reverse GeoCoder:REST JSON"

From Melissa Data Wiki
Jump to navigation Jump to search
Line 17: Line 17:
&recs={MaxRecords}
&recs={MaxRecords}
&t={TransmissionReference}
&t={TransmissionReference}
&opt={Options}
&format=json
&format=json
</pre>
</pre>
Line 39: Line 40:
     "Latitude":"string",
     "Latitude":"string",
     "Longitude":"string",
     "Longitude":"string",
     "Distance":"string"
     "Distance":"string",
    "MelissaAddressKey":"string",
    "MelissaAddressKeyBase":"string"
   }]
   }]
}
}

Revision as of 23:24, 17 July 2020

← 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



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=json


JSON Response

{ 
  "Version":"string",
  "TransmissionReference":"string",
  "TransmissionResults":"string",
  "Results":"string",
  "TotalRecords":"string",
  "Records":[{
    "AddressLine1":"string",
    "SuiteName":"string",
    "SuiteCount":"string",
    "City":"string",
    "State":"string",
    "PostalCode":"string",
    "AddressKey":"string",
    "Latitude":"string",
    "Longitude":"string",
    "Distance":"string",
    "MelissaAddressKey":"string",
    "MelissaAddressKeyBase":"string"
  }]
}