Difference between revisions of "SSN Name Match:Batch JSON"

From Melissa Data Wiki
Jump to navigation Jump to search
(Created page with "{{ SSNWebServiceNav |ExampleCollapse= }} {{CustomTOC}} ==JSON Request Header== <pre> Content-Type: application/json; charset=utf-8 Accept: application/json Host: personator.melissadata.net Expect: 100-continue Connection: Keep-Alive </pre> ==JSON Request Header== <pre> { "UserId": "string", "Records": [ { "RecordID": "string", "SSN": "string", "FirstName": "string", "LastName": "string", "FullName":"string }, { "Re...")
 
m (Admin moved page SSN Verification:Batch JSON to SSN Name Match:Batch JSON: Name Change)
 
(3 intermediate revisions by the same user not shown)
Line 71: Line 71:




[[Category:SSN Web Service]]
[[Category:SSN Name Match]]
[[Category:Reference]]
[[Category:Reference]]

Latest revision as of 00:40, 15 April 2023

← SSN Name Match

SSN Name Match Navigation
Introduction
Licensing
Input/Output
Request Fields
Response Fields
Examples
REST JSON
REST XML
Batch JSON
Result Codes
Result Code Use
SSN Name Match Result Codes
Sample Code



JSON Request Header

Content-Type: application/json; charset=utf-8
Accept: application/json
Host: personator.melissadata.net
Expect: 100-continue
Connection: Keep-Alive


JSON Request Header

{
  "UserId": "string",
  "Records": [
    {
      "RecordID": "string",
      "SSN": "string",
      "FirstName": "string",
      "LastName": "string",
      "FullName":"string
    },
    {
      "RecordID": "string",
      "SSN": "string",
      "FirstName": "string",
      "LastName": "string",
      "FullName":"string
    },
    …
  ]
}


JSON Batch Response

A maximum of up to 100 records per request can be sent. You must have "Content-Type: application/json" in the http header.

{
  "TransmissionResults": "string",
  "TransmissionReference": "string",
  "Version": "string",
  "TotalRecords": "string",
  "Records": [
    {
      "RecordID": "string",
      "SSN": "string",
      "IssuingState": "string",
      "Results": "string",
      "ResultsFromDataSource": "string"
    },
    {
      "RecordID": "string",
      "SSN": "string",
      "IssuingState": "string",
      "Results": "string",
      "ResultsFromDataSource": "string"
    },
    …
  ]
}