This wiki is no longer being updated as of December 10, 2025.
|
Global Name:Batch XML: Difference between revisions
Jump to navigation
Jump to search
Created page with "{{GlobalNameNav |ExampleCollapse= }} {{CustomTOC}} ==XML Batch Request== A maximum of up to 100 records per request can be sent. <pre> <Request> <TransmissionReference>s..." |
No edit summary |
||
| Line 7: | Line 7: | ||
==XML Batch Request== | ==XML 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/xml</code>'''" in the http header. | ||
<pre> | <pre> | ||
Revision as of 18:37, 14 October 2016
| Global Name Navigation | |||||||
|---|---|---|---|---|---|---|---|
| |||||||
| |||||||
| |||||||
| |||||||
| Sample Code |
XML Batch Request
A maximum of up to 100 records per request can be sent. You must have "Accept: application/xml" in the http header.
<Request>
<TransmissionReference>string</TransmissionReference>
<CustomerID>string</CustomerID>
<Options>string</Options>
<Records>
<RequestRecord>
<RecordID>string</RecordID>
<Company>string</Company>
<FullName>string</FullName>
</RequestRecord>
<RequestRecord>
<RecordID>string</RecordID>
<Company>string</Company>
<FullName>string</FullName>
</RequestRecord>
<RequestRecord>
...
</RequestRecord>
</Records>
</Request>
XML Batch Response
<?xml version="1.0"?>
<Response xmlns=urn:mdGlobalName xmlns:i=http://www.w3.org/2001/XMLSchema-instance>
<Version>string</Version>
<TransmissionReference>string</TransmissionReference>
<TransmissionResults>string</TransmissionResults>
<TotalRecords>string</TotalRecords>
<Records>
<ResponseRecord>
<RecordID>string</RecordID>
<Results>string</Results>
<Company>String</Company>
<NamePrefix>String</NamePrefix>
<NameFirst>string</NameFirst>
<NameMiddle>String</NameMiddle>
<NameLast>string</NameLast>
<NameSuffix>string</NameSuffix>
<Gender>String</Gender>
<NamePrefix2>String</NamePrefix2>
<NameFirst2>string</NameFirst2>
<NameMiddle2>String</NameMiddle2>
<NameLast2>string</NameLast2>
<NameSuffix2>string</NameSuffix2>
<Gender2>string</Gender2>
</ResponseRecord>
<ResponseRecord>
<RecordID>string</RecordID>
<Results>string</Results>
<Company>String</Company>
<NamePrefix>String</NamePrefix>
<NameFirst>string</NameFirst>
<NameMiddle>String</NameMiddle>
<NameLast>string</NameLast>
<NameSuffix>string</NameSuffix>
<Gender>String</Gender>
<NamePrefix2>String</NamePrefix2>
<NameFirst2>string</NameFirst2>
<NameMiddle2>String</NameMiddle2>
<NameLast2>string</NameLast2>
<NameSuffix2>string</NameSuffix2>
<Gender2>string</Gender2>
</ResponseRecord>
<ResponseRecord>
...
</ResponseRecord>
</Records>
</Response>