This wiki is no longer being updated as of December 10, 2025.
|
IP Locator:Batch JSON: Difference between revisions
Jump to navigation
Jump to search
Created page with "{{IPLocatorNav |ExampleCollapse= }} {{CustomTOC}} ==JSON Batch Request== A maximum of up to 100 records per request can be sent. <pre> { "CustomerID":"string", "Transm..." |
No edit summary |
||
| Line 50: | Line 50: | ||
"UTC":"string", | "UTC":"string", | ||
"Continent":"string", | "Continent":"string", | ||
"ProxyType":"string", | |||
"ProxyDescription":"string", | |||
"Result":"string" | "Result":"string" | ||
}, | }, | ||
| Line 68: | Line 70: | ||
"UTC":"string", | "UTC":"string", | ||
"Continent":"string", | "Continent":"string", | ||
"ProxyType":"string", | |||
"ProxyDescription":"string", | |||
"Result":"string" | "Result":"string" | ||
}, | }, | ||
Revision as of 22:11, 20 March 2017
| Global IP Navigation | |||
|---|---|---|---|
| |||
| |||
| |||
| |||
| Sample Code |
JSON Batch Request
A maximum of up to 100 records per request can be sent.
{
"CustomerID":"string",
"TransmissionReference":"string",
"Records":[{
"RecordID":"string",
"IPAddress":"string"
},
{
"RecordID":"string",
"IPAddress":"string"
},
{
...
}]
}
JSON Batch Response
{
"Version":"string",
"TransmissionReference":"string",
"TransmissionResults":"string",
"Records":[{
"RecordID":"string",
"IPAddress":"string",
"Latitude":"string",
"Longitude":"string",
"PostalCode":"string",
"Region":"string",
"ISPName":"string",
"DomainName":"string",
"City":"string",
"CountryName":"string",
"CountryAbbreviation":"string",
"ConnectionSpeed":"string",
"ConnectionType":"string",
"UTC":"string",
"Continent":"string",
"ProxyType":"string",
"ProxyDescription":"string",
"Result":"string"
},
{
"RecordID":"string",
"IPAddress":"string",
"Latitude":"string",
"Longitude":"string",
"PostalCode":"string",
"Region":"string",
"ISPName":"string",
"DomainName":"string",
"City":"string",
"CountryName":"string",
"CountryAbbreviation":"string",
"ConnectionSpeed":"string",
"ConnectionType":"string",
"UTC":"string",
"Continent":"string",
"ProxyType":"string",
"ProxyDescription":"string",
"Result":"string"
},
{
...
}]
}