This wiki is no longer being updated as of December 10, 2025.
|
Global Name:Batch JSON: Difference between revisions
Jump to navigation
Jump to search
Created page with "{{GlobalNameNav |ExampleCollapse= }} {{CustomTOC}} ==JSON Batch Request== A maximum of up to 100 records per request can be sent. <pre> { "TransmissionReference":"string"..." |
No edit summary |
||
| Line 7: | Line 7: | ||
==JSON Batch Request== | ==JSON Batch Request== | ||
A maximum of up to 100 records per request can be sent. | A maximum of up to 100 records per request can be sent. You must have "'''<code>Accept: application/json</code>'''" in the http header. | ||
<pre> | <pre> | ||
{ | { | ||
Revision as of 18:37, 14 October 2016
| Global Name Navigation | |||||||
|---|---|---|---|---|---|---|---|
| |||||||
| |||||||
| |||||||
| |||||||
| 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",
"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"
},
{
...
}]
}