This wiki is no longer being updated as of December 10, 2025.
|
Reverse GeoCoder:Example Response: Difference between revisions
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..." |
No edit summary |
||
| Line 81: | Line 81: | ||
}] | }] | ||
} | } | ||
</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 18:35, 2 October 2014
← Reverse GeoCoder Web Service Reference
| Reverse GeoCoder Web Service Navigation | ||||
|---|---|---|---|---|
| ||||
| ||||
| ||||
| ||||
|
The following responses detail a possible response returned by the web service.
JSON
{
"Version":"String content",
"TransmissionReference":"String content",
"TransmissionResults":"String content",
"Results":"String content",
"TotalRecords":"String content",
"Records":[{
"AddressLine1":"String content",
"SuiteName":"String content",
"SuiteCount":"String content",
"City":"String content",
"State":"String content",
"PostalCode":"String content",
"AddressKey":"String content",
"Latitude":"String content",
"Longitude":"String content",
"Distance":"String content"
}]
}
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
<?xml version="1.0"?>
<Response>
<Version>string</Version>
<TransmissionReference>string</TransmissionReference>
<TransmissionResults>string</TransmissionResults>
<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>
</Response>