Difference between revisions of "Global Address Verification:Batch JSON"

From Melissa Data Wiki
Jump to navigation Jump to search
Line 7: Line 7:


==JSON Batch Request==
==JSON Batch Request==
A maximum of up to 100 records per request can be sent. You must have “Accept: application/json” in the http header.  
A maximum of up to 100 records per request can be sent. You must have <b>“Accept: application/json”</b> in the http header.  
<pre>
<pre>
{
{

Revision as of 23:20, 30 August 2016

← Global Address Verification

Global Address Navigation
Introduction
Licensing
Input/Output
Request Fields
Response Fields
Examples
REST JSON
REST JSONP
REST XML
Batch JSON
Batch SOAP
Batch XML
Result Codes
Result Code Use
Global Address Verification Result Codes
Sample Code



JSON Batch Request

A maximum of up to 100 records per request can be sent. You must have “Accept: application/json” in the http header.

{
  "TransmissionReference":"string",
  "CustomerID":"string",
  "Options":"string",
  "Records":[{
    "RecordID":"string",
    "Organization":"string",
    "AddressLine1":"string",
    "AddressLine2":"string",
    "AddressLine3":"string",
    "AddressLine4":"string",
    "AddressLine5":"string",
    "AddressLine6":"string",
    "AddressLine7":"string",
    "AddressLine8":"string",
    "DoubleDependentLocality":"string",
    "DependentLocality":"string",
    "Locality":"string",
    "SubAdministrativeArea":"string",
    "AdministrativeArea":"string",
    "PostalCode":"string",
    "SubNationalArea":"string",
    "Country":"string"
  },
  {
    "RecordID":"string",
    "Organization":"string",
    "AddressLine1":"string",
    "AddressLine2":"string",
    "AddressLine3":"string",
    "AddressLine4":"string",
    "AddressLine5":"string",
    "AddressLine6":"string",
    "AddressLine7":"string",
    "AddressLine8":"string",
    "DoubleDependentLocality":"string",
    "DependentLocality":"string",
    "Locality":"string",
    "SubAdministrativeArea":"string",
    "AdministrativeArea":"string",
    "PostalCode":"string",
    "SubNationalArea":"string",
    "Country":"string"
  },
  {
    ...
  }]
}


JSON Batch Response

{
  "Version":"string",
  "TransmissionReference":"string",
  "TransmissionResults":"string",
  "TotalRecords":"string",
  "Records":[{
    "RecordID":"string",
    "Results":"string",
    "FormattedAddress":"string",
    "Organization":"string",
    "AddressLine1":"string",
    "AddressLine2":"string",
    "AddressLine3":"string",
    "AddressLine4":"string",
    "AddressLine5":"string",
    "AddressLine6":"string",
    "AddressLine7":"string",
    "AddressLine8":"string",
    "SubPremises":"string",
    "DoubleDependentLocality":"string",
    "DependentLocality":"string",
    "Locality":"string",
    "SubAdministrativeArea":"string",
    "AdministrativeArea":"string",
    "PostalCode":"string",
    "AddressType":"string",
    "AddressKey":"string",
    "SubNationalArea":"string",
    "CountryName":"string",
    "CountryISO3166_1_Alpha2":"string",
    "CountryISO3166_1_Alpha3":"string",
    "CountryISO3166_1_Numeric":"string",
    "Thoroughfare":"string",
    "ThoroughfarePreDirection":"string",
    "ThoroughfareLeadingType":"string",
    "ThoroughfareName":"string",
    "ThoroughfareTrailingType":"string",
    "ThoroughfarePostDirection":"string",
    "DependentThoroughfare":"string",
    "DependentThoroughfarePreDirection":"string",
    "DependentThoroughfareLeadingType":"string",
    "DependentThoroughfareName":"string",
    "DependentThoroughfareTrailingType":"string",
    "DependentThoroughfarePostDirection":"string",
    "Building":"string",
    "PremisesType":"string",
    "PremisesNumber":"string",
    "SubPremisesType":"string",
    "SubPremisesNumber":"string",
    "PostBox":"string",
    "Latitude":"string",
    "Longitude":"string"
  },
  {
    "RecordID":"string",
    "Results":"string",
    "FormattedAddress":"string",
    "Organization":"string",
    "AddressLine1":"string",
    "AddressLine2":"string",
    "AddressLine3":"string",
    "AddressLine4":"string",
    "AddressLine5":"string",
    "AddressLine6":"string",
    "AddressLine7":"string",
    "AddressLine8":"string",
    "SubPremises":"string",
    "DoubleDependentLocality":"string",
    "DependentLocality":"string",
    "Locality":"string",
    "SubAdministrativeArea":"string",
    "AdministrativeArea":"string",
    "PostalCode":"string",
    "AddressType":"string",
    "AddressKey":"string",
    "SubNationalArea":"string",
    "CountryName":"string",
    "CountryISO3166_1_Alpha2":"string",
    "CountryISO3166_1_Alpha3":"string",
    "CountryISO3166_1_Numeric":"string",
    "Thoroughfare":"string",
    "ThoroughfarePreDirection":"string",
    "ThoroughfareLeadingType":"string",
    "ThoroughfareName":"string",
    "ThoroughfareTrailingType":"string",
    "ThoroughfarePostDirection":"string",
    "DependentThoroughfare":"string",
    "DependentThoroughfarePreDirection":"string",
    "DependentThoroughfareLeadingType":"string",
    "DependentThoroughfareName":"string",
    "DependentThoroughfareTrailingType":"string",
    "DependentThoroughfarePostDirection":"string",
    "Building":"string",
    "PremisesType":"string",
    "PremisesNumber":"string",
    "SubPremisesType":"string",
    "SubPremisesNumber":"string",
    "PostBox":"string",
    "Latitude":"string",
    "Longitude":"string"
  },
  {
    ...
  }]
}