This wiki is no longer being updated as of December 10, 2025.
|
SSN Name Match:Batch JSON: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 71: | Line 71: | ||
[[Category:SSN | [[Category:SSN Name Match]] | ||
[[Category:Reference]] | [[Category:Reference]] | ||
Revision as of 00:39, 15 April 2023
| SSN Name Match Navigation | ||||
|---|---|---|---|---|
| ||||
| ||||
| ||||
| ||||
| 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"
},
…
]
}