This wiki is no longer being updated as of December 10, 2025.
|
Reverse GeoCoder:JSON: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 7: | Line 7: | ||
==JSON Request== | ==JSON Request== | ||
A maximum of up to 100 records per request can be sent. | |||
===Request Header=== | |||
The HTTP header requires the following values: | |||
<pre>Content-Type: application/json | |||
Accept: application/json | |||
</pre> | |||
===Request Body=== | |||
<pre> | <pre> | ||
{ | { | ||
Revision as of 16:14, 25 March 2021
| Reverse GeoCoder Navigation | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||
| ||||||||||
| ||||||||||
| ||||||||||
| Sample Code |
JSON Request
A maximum of up to 100 records per request can be sent.
Request Header
The HTTP header requires the following values:
Content-Type: application/json Accept: application/json
Request Body
{
"RequestArray": {
"CustomerId":"string",
"Latitude":"string",
"Longitude":"string",
"MaxDistance":"string",
"MaxRecords":"string",
"Options":"string",
"TransmissionReference":"string"
}
}
JSON Response
{
"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",
"MelissaAddressKey":"string",
“MelissaAddressKeyBase":"string"
}]
}