Difference between revisions of "Reverse GeoCoder:Example Response"

From Melissa Data Wiki
Jump to navigation Jump to search
Line 29: Line 29:
   }]
   }]
}
}
</pre>
==SOAP==
<pre>
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
</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 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"
  }]
}


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>