Difference between revisions of "Reverse GeoCoder:Response Record Elements"

From Melissa Data Wiki
Jump to navigation Jump to search
(Created page with "← Reverse GeoCoder Web Service Reference {| class="mw-collapsible" cellspacing="2" style="background-color:#f9f9f9; border:1px...")
 
(Redirected page to Reverse GeoCoder:Response)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[Reverse GeoCoder Web Service:Reference|← Reverse GeoCoder Web Service Reference]]
#REDIRECT [[Reverse GeoCoder:Response]]
 
{| class="mw-collapsible" cellspacing="2" style="background-color:#f9f9f9; border:1px solid #aaaaaa; font-size:9pt; color:#0645ad; padding:8px 8px;"
! style="text-align:left; color:black; border-bottom:1px solid #aaaaaa;"|'''Reverse GeoCoder Web Service Navigation'''
|-
| style="padding-right:220px;"|
|-
|
{| class="mw-collapsible mw-collapsed" style="width:100%;"
|- align="left"
! style="color:black;"|[[Reverse GeoCoder Web Service:Introduction|Introduction]]
|-
|[[Reverse GeoCoder Web Service:Licensing|Licensing]]
|}
|-
|
{| class="mw-collapsible mw-collapsed" style="width:100%;"
|- align="left"
! style="color:black;"|[[Reverse GeoCoder Web Service:Request|Request]]
|-
|[[Reverse GeoCoder Web Service:Request Elements|Request Elements]]
|-
|[[Reverse GeoCoder Web Service:Example Request|Example Request]]
|}
|-
|
{| class="mw-collapsible" style="width:100%;"
|- align="left"
! style="color:black;"|[[Reverse GeoCoder Web Service:Response|Response]]
|-
|[[Reverse GeoCoder Web Service:Response Elements|Response Elements]]
|-
|[[Reverse GeoCoder Web Service:Response Record Elements|Response Record Elements]]
|-
|[[Reverse GeoCoder Web Service:Example Response|Example Response]]
|}
|-
|
{| class="mw-collapsible mw-collapsed" style="width:100%;"
|- align="left"
! style="color:black;"|[[Reverse GeoCoder Web Service:Result Codes|Result Codes]]
|-
|[[Reverse GeoCoder Web Service:Result Codes#Result Code Use|Result Code Use]]
|-
|[[Returned Result Codes:Web Services#Reverse GeoCoder Web Service|Returned Result Codes]]
|}
|-
|
{| <!--class="mw-collapsible mw-collapsed"--> style="width:100%;"
|- align="left"
! style="color:black;"|[[Reverse GeoCoder Web Service:Sample Code|Sample Code]]
|}
|}
 
 
{{CustomTOC}}
 
==AddressLine1==
Returns the street address (street number and street name) that corresponds to the input geo coordinates.
 
===SOAP===
<pre>
string = Response.Records.AddressLine1
</pre>
 
===JSON===
<pre>
“AddressLine1”:”string”
</pre>
 
===XML===
<pre>
<ResponseArray>
  <Records>
    <ResponseRecord>
      <AddressLine1>string</AddressLine1>
    </ResponseRecord>
  </Records>
</ResponseArray>
</pre>
 
 
==SuiteName==
Returns the suite name of the address returned. Values that could be returned are: Ste, Apt., etc.
 
===SOAP===
<pre>
string = Response.Records.SuiteName
</pre>
 
===JSON===
<pre>
“SuiteName”:”string”
</pre>
 
===XML===
<pre>
<ResponseArray>
  <Records>
    <ResponseRecord>
      <SuiteName>string</SuiteName>
    </ResponseRecord>
  </Records>
</ResponseArray>
</pre>
 
==SuiteCount==
Returns the number of suites in a particular building. Zero will be returned if the address has a no suites (a single delivery point).
 
===SOAP===
<pre>
string = Response.Records.SuiteCount
</pre>
 
===JSON===
<pre>
“SuiteCount”:”string”
</pre>
 
===XML===
<pre>
<ResponseArray>
  <Records>
    <ResponseRecord>
      <SuiteCount>string</SuiteCount>
    </ResponseRecord>
  </Records>
</ResponseArray>
</pre>
 
 
==City==
Returns the city of the output address.
 
===SOAP===
<pre>
string = Response.Records.City
</pre>
 
===JSON===
<pre>
“City”:”string”
</pre>
 
===XML===
<pre>
<ResponseArray>
  <Records>
    <ResponseRecord>
      <City>string</City>
    </ResponseRecord>
  </Records>
</ResponseArray>
</pre>
 
 
==State==
Returns the State of the output address.
 
===SOAP===
<pre>
string = Response.Records.State
</pre>
 
===JSON===
<pre>
“State”:”string”
</pre>
 
===XML===
<pre>
<ResponseArray>
  <Records>
    <ResponseRecord>
      <State>string</State>
    </ResponseRecord>
  </Records>
</ResponseArray>
</pre>
 
 
==PostalCode==
Returns the Postal Code of the output address.
 
===SOAP===
<pre>
string = Response.Records.PostalCode
</pre>
 
===JSON===
<pre>
“PostalCode”:”string”
</pre>
 
===XML===
<pre>
<ResponseArray>
  <Records>
    <ResponseRecord>
      <PostalCode>string</PostalCode>
    </ResponseRecord>
  </Records>
</ResponseArray>
</pre>
 
 
==AddressKey==
Returns a unique identifier for an address. This key can be used with other current and future Melissa Data services.
 
===SOAP===
<pre>
string = Response.Records.AddressKey
</pre>
 
===JSON===
<pre>
“AddressKey”:”string”
</pre>
 
===XML===
<pre>
<ResponseArray>
  <Records>
    <ResponseRecord>
      <AddressKey>string</AddressKey>
    </ResponseRecord>
  </Records>
</ResponseArray>
</pre>
 
 
==Latitude==
Returns the latitude geographic coordinate of the output address.
 
===SOAP===
<pre>
string = Response.Records.Latitude
</pre>
 
===JSON===
<pre>
“Latitude”:”string”
</pre>
 
===XML===
<pre>
<ResponseArray>
  <Records>
    <ResponseRecord>
      <Latitude>string</Latitude>
    </ResponseRecord>
  </Records>
</ResponseArray>
</pre>
 
 
==Longitude==
Returns the longitude geographic coordinate of the output address.
 
===SOAP===
<pre>
string = Response.Records.Longitude
</pre>
 
===JSON===
<pre>
“Longitude”:”string”
</pre>
 
===XML===
<pre>
<ResponseArray>
  <Records>
    <ResponseRecord>
      <Longitude>string</Longitude>
    </ResponseRecord>
  </Records>
</ResponseArray>
</pre>
 
 
==Distance==
Returns the distance between the input coordinates and the output coordinates. A distance of zero indicates that an exact address match was returned for the input geographic coordinates.
 
===SOAP===
<pre>
string = Response.Records.Distance
</pre>
 
===JSON===
<pre>
“Distance”:”string”
</pre>
 
===XML===
<pre>
<ResponseArray>
  <Records>
    <ResponseRecord>
      <Distance>string</Distance>
    </ResponseRecord>
  </Records>
</ResponseArray>
</pre>
 
 
[[Category:Reverse GeoCoder Web Service]]
[[Category:Reference]]

Latest revision as of 19:21, 8 March 2019