Reverse GeoCoder:Example Response

From Melissa Data Wiki
Revision as of 00:15, 31 March 2018 by Admin (talk | contribs)
Jump to navigation Jump to search

← 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 responses detail a possible response returned by the service.

JSON

{ 
  "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"
  }]
}


SOAP

string = Response.Version
string = Response.TransmissionReference
string = Response.TransmissionResults
string = Response.TotalRecords
string = Response.Records.AddressLine1
string = Response.Records.SuiteName
string = Response.Records.SuiteCount
string = Response.Records.City
string = Response.Records.State
string = Response.Records.PostalCode
string = Response.Records.AddressKey
string = Response.Records.Latitude
string = Response.Records.Longitude
string = Response.Records.Distance


XML

<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>
    </ResponseRecord>
  </Records>
</ResponseArray>