This wiki is no longer being updated as of December 10, 2025.
|
IP Locator:REST JSON: Difference between revisions
Jump to navigation
Jump to search
Created page with "{{IPLocatorNav |ExampleCollapse= }} {{CustomTOC}} ==REST Request== There is no recordID element because a REST request can only submit one record per request. <pre> http:/..." |
No edit summary |
||
| (One intermediate revision by the same user not shown) | |||
| Line 14: | Line 14: | ||
&id={CustomerId} | &id={CustomerId} | ||
&ip={IPAddress} | &ip={IPAddress} | ||
&col={Columns} | |||
</pre> | </pre> | ||
| Line 20: | Line 21: | ||
<pre> | <pre> | ||
{ | { | ||
"Version":"string", | "Version": "string", | ||
"TransmissionReference":"string", | "TransmissionReference": "string", | ||
"TransmissionResults":"string", | "TransmissionResults": "string", | ||
"Records":[{ | "Records": [{ | ||
" | "City": "string", | ||
" | "ConnectionSpeed": "broadband", | ||
" | "ConnectionType": "string", | ||
" | "Continent": "string", | ||
" | "CountryAbbreviation": "string", | ||
" | "CountryName": "string", | ||
"DomainName":"string", | "DomainAddress1": "string", | ||
" | "DomainAdministrativeArea": "string", | ||
" | "DomainAgeEstimated": "string", | ||
" | "DomainAvailability": "string", | ||
" | "DomainCountry": "string", | ||
" | "DomainCountryCode": "string", | ||
" | "DomainCreatedDate": "string", | ||
" | "DomainEmail": "string", | ||
"Result":"string" | "DomainExpirationDate": string", | ||
"DomainLocality": "string", | |||
"DomainName": "string", | |||
"DomainOrganization": "string", | |||
"DomainPostalCode": "string", | |||
"DomainPrivateProxy": "string", | |||
"DomainUpdatedDate": "string", | |||
"DST": "string", | |||
"IPAddress": "string", | |||
"ISPName": "string", | |||
"Latitude": "string", | |||
"Longitude": "string", | |||
"PostalCode": "string", | |||
"ProxyDescription": "string", | |||
"ProxyType": "string", | |||
"RecordID": "string", | |||
"Region": "string", | |||
"Result": "string", | |||
"TimeZoneCode": "string", | |||
"TimeZoneName": "string", | |||
"UTC": "string" | |||
}] | }] | ||
} | } | ||
Latest revision as of 23:56, 16 July 2021
| Global IP Navigation | |||
|---|---|---|---|
| |||
| |||
| |||
| |||
| Sample Code |
REST Request
There is no recordID element because a REST request can only submit one record per request.
http://globalip.melissadata.net/v4/web/iplocation/doiplocation
?t={TransmissionReference}
&id={CustomerId}
&ip={IPAddress}
&col={Columns}
JSON Response
{
"Version": "string",
"TransmissionReference": "string",
"TransmissionResults": "string",
"Records": [{
"City": "string",
"ConnectionSpeed": "broadband",
"ConnectionType": "string",
"Continent": "string",
"CountryAbbreviation": "string",
"CountryName": "string",
"DomainAddress1": "string",
"DomainAdministrativeArea": "string",
"DomainAgeEstimated": "string",
"DomainAvailability": "string",
"DomainCountry": "string",
"DomainCountryCode": "string",
"DomainCreatedDate": "string",
"DomainEmail": "string",
"DomainExpirationDate": string",
"DomainLocality": "string",
"DomainName": "string",
"DomainOrganization": "string",
"DomainPostalCode": "string",
"DomainPrivateProxy": "string",
"DomainUpdatedDate": "string",
"DST": "string",
"IPAddress": "string",
"ISPName": "string",
"Latitude": "string",
"Longitude": "string",
"PostalCode": "string",
"ProxyDescription": "string",
"ProxyType": "string",
"RecordID": "string",
"Region": "string",
"Result": "string",
"TimeZoneCode": "string",
"TimeZoneName": "string",
"UTC": "string"
}]
}