|
|
(3 intermediate revisions 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 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"
| |
| }]
| |
| }
| |
| </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]]
| |