Difference between revisions of "Global Name: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 "'''<code>Accept: application/json</code>'''" in the http header.
A maximum of up to 100 records per request can be sent.
 
The HTTP header requires the following values:
<pre>Content-Type: application/json
Accept: application/json
</pre>
 
Request example:
<pre>
<pre>
{
{

Revision as of 19:08, 24 March 2021

← Global Name

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



JSON Batch Request

A maximum of up to 100 records per request can be sent.

The HTTP header requires the following values:

Content-Type: application/json
Accept: application/json

Request example:

{
  "TransmissionReference":"string",
  "CustomerID":"string",
  "Options":"string",
  "Records":[{
    "RecordID":"string",
    "Company":"string",
    "FullName":"string"
  },
  {
    "RecordID":"string",
    "Company":"string",
    "FullName":"string"
  },
  {
    ...
  }]
}


JSON Batch Response

{
  "Version":"string",
  "TransmissionReference":"string",
  "TransmissionResults":"string",
  "TotalRecords":"string",
  "Records":[{
    "RecordID":"string",
    "Results":"string",
    "Company":"string",
    "NamePrefix":"string",
    "NameFirst":"string",
    "NameMiddle":"string",
    "NameLast":"string",
    "NameSuffix":"string",
    "Gender":"string",
    "NamePrefix2":"string",
    "NameFirst2":"string",
    "NameMiddle2":"string",
    "NameLast2":"string",
    "NameSuffix2":"string",
    "Gender2":"string"
  },
  {
    "RecordID":"string",
    "Results":"string",
    "Company":"string",
    "NamePrefix":"string",
    "NameFirst":"string",
    "NameMiddle":"string",
    "NameLast":"string",
    "NameSuffix":"string",
    "Gender":"string",
    "NamePrefix2":"string",
    "NameFirst2":"string",
    "NameMiddle2":"string",
    "NameLast2":"string",
    "NameSuffix2":"string",
    "Gender2":"string"
  },
  {
    ...
  }]
}