IP Locator:Batch JSON

From Melissa Data Wiki
Revision as of 23:06, 7 October 2016 by Admin (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

← Global IP

Global IP Navigation
Introduction
Licensing
Input/Output
Request Fields
Response Fields
Examples
REST JSON
Batch JSON
Result Codes
Result Code Use
Global IP Result Codes
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",
    "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",
    "Result":"string"
  },
  {
    ...
  }]
}