|
|
(One intermediate revision by the same user not shown) |
Line 1: |
Line 1: |
| {{ ReverseGeoCoderNav
| | #REDIRECT [[Reverse GeoCoder:REST XML]] |
| |ResponseCollapse=
| |
| }}
| |
| | |
| | |
| {{CustomTOC}}
| |
| | |
| The following responses detail a possible response returned by the service.
| |
| | |
| ==JSON==
| |
| <pre>
| |
| {
| |
| "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"
| |
| }]
| |
| }
| |
| </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>
| |
| | |
| | |
| ==XML==
| |
| <pre>
| |
| <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>
| |
| </pre>
| |
| | |
| | |
| [[Category:Reverse GeoCoder]] | |
| [[Category:Reference]]
| |