Global Name:Batch JSON: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 9: | Line 9: | ||
A maximum of up to 100 records per request can be sent. | A maximum of up to 100 records per request can be sent. | ||
===Request Header=== | |||
The HTTP header requires the following values: | The HTTP header requires the following values: | ||
<pre>Content-Type: application/json | <pre>Content-Type: application/json | ||
Line 14: | Line 15: | ||
</pre> | </pre> | ||
Request | ===Request Body=== | ||
<pre> | <pre> | ||
{ | { |
Revision as of 17:59, 25 March 2021
Global Name Navigation | |||||||
---|---|---|---|---|---|---|---|
| |||||||
| |||||||
| |||||||
| |||||||
Sample Code |
JSON Batch Request
A maximum of up to 100 records per request can be sent.
Request Header
The HTTP header requires the following values:
Content-Type: application/json Accept: application/json
Request Body
{ "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" }, { ... }] }