|
|
(3 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:REST XML]] |
| | |
| {| 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" 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 mw-collapsed" 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}}
| |
| | |
| The following requests detail the possible elements and general format of the four possible protocols.
| |
| | |
| ==JSON Request==
| |
| <pre>
| |
| {
| |
| "RequestArray": {
| |
| "CustomerId":"string",
| |
| "Latitude":"string",
| |
| "Longitude":"string",
| |
| "MaxDistance":"string",
| |
| "MaxRecords":"string",
| |
| "TransmissionReference":"string"
| |
| }
| |
| }
| |
| </pre>
| |
| | |
| | |
| ==REST Request==
| |
| There is no recordID element because a REST request can only submit one record per request:
| |
| | |
| <pre>
| |
| http://ReverseGeo.melissadata.net/V3/WEB/ReverseGeoCode/doLookup
| |
| ?id={CustomerId}
| |
| &lat={Latitude}
| |
| &long={Longitude}
| |
| &dist={MaxDistance}
| |
| &recs={MaxRecords}
| |
| &t={TransmissionReference}
| |
| </pre>
| |
| | |
| | |
| ==SOAP Request==
| |
| <pre>
| |
| Dim Request As New ReverseGeo.Request
| |
| Dim Response As New ReverseGeo.Response
| |
| Request.CustomerId = string
| |
| Request.TransmissionReference = string
| |
| Request.Latitude = string
| |
| Request.Longitude = string
| |
| Request.MaxDistance = string
| |
| Request.MaxRecords = string
| |
| ReverseGeoClient = New ReverseGeo.Service
| |
| Response = ReverseGeoClient.doLookUp(Request)
| |
| ReverseGeoClient.Dispose()
| |
| </pre>
| |
| | |
| | |
| ==XML Request==
| |
| <pre>
| |
| <RequestArray>
| |
| <CustomerID>string</CustomerID>
| |
| <Latitude>string</Latitude>
| |
| <Longitude>string</Longitude>
| |
| <MaxDistance>string</MaxDistance>
| |
| <MaxRecords>string</MaxRecords>
| |
| <TransmissionReference>string</TransmissionReference>
| |
| </RequestArray>
| |
| </pre>
| |
| | |
| | |
| [[Category:Reverse GeoCoder Web Service]]
| |
| [[Category:Reference]]
| |