Difference between revisions of "Global Name:Batch SOAP"

From Melissa Data Wiki
Jump to navigation Jump to search
Line 53: Line 53:
       <RecordID>string</RecordID>
       <RecordID>string</RecordID>
       <Results>string</Results>
       <Results>string</Results>
       <Company>String</Company>
       <Company>string</Company>
       <NamePrefix>String</NamePrefix>
       <NamePrefix>string</NamePrefix>
       <NameFirst>string</NameFirst>
       <NameFirst>string</NameFirst>
       <NameMiddle>String</NameMiddle>
       <NameMiddle>string</NameMiddle>
       <NameLast>string</NameLast>
       <NameLast>string</NameLast>
       <NameSuffix>string</NameSuffix>
       <NameSuffix>string</NameSuffix>
       <Gender>String</Gender>
       <Gender>string</Gender>
       <NamePrefix2>String</NamePrefix2>
       <NamePrefix2>string</NamePrefix2>
       <NameFirst2>string</NameFirst2>
       <NameFirst2>string</NameFirst2>
       <NameMiddle2>String</NameMiddle2>
       <NameMiddle2>string</NameMiddle2>
       <NameLast2>string</NameLast2>
       <NameLast2>string</NameLast2>
       <NameSuffix2>string</NameSuffix2>
       <NameSuffix2>string</NameSuffix2>
Line 70: Line 70:
       <RecordID>string</RecordID>
       <RecordID>string</RecordID>
       <Results>string</Results>
       <Results>string</Results>
       <Company>String</Company>
       <Company>string</Company>
       <NamePrefix>String</NamePrefix>
       <NamePrefix>string</NamePrefix>
       <NameFirst>string</NameFirst>
       <NameFirst>string</NameFirst>
       <NameMiddle>String</NameMiddle>
       <NameMiddle>string</NameMiddle>
       <NameLast>string</NameLast>
       <NameLast>string</NameLast>
       <NameSuffix>string</NameSuffix>
       <NameSuffix>string</NameSuffix>
       <Gender>String</Gender>
       <Gender>string</Gender>
       <NamePrefix2>String</NamePrefix2>
       <NamePrefix2>string</NamePrefix2>
       <NameFirst2>string</NameFirst2>
       <NameFirst2>string</NameFirst2>
       <NameMiddle2>String</NameMiddle2>
       <NameMiddle2>string</NameMiddle2>
       <NameLast2>string</NameLast2>
       <NameLast2>string</NameLast2>
       <NameSuffix2>string</NameSuffix2>
       <NameSuffix2>string</NameSuffix2>

Revision as of 17:36, 28 March 2018

← Global Name

Global Name Navigation
Introduction
Licensing
Input/Request
Request Fields
Response Fields
Examples
REST JSON
REST JSONP
REST XML
Batch JSON
Batch SOAP
Batch XML
Result Codes
Result Code Use
Global Name Result Codes
Sample Code



SOAP WSDL

http://globalname.melissadata.net/V3/SOAP/GlobalName?wsdl
http://globalname.melissadata.net/V3/SOAP/GlobalName?singleWsdl


SOAP Batch Request

A maximum of up to 100 records per request can be sent.

<?xml version="1.0"?>
<Request xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <TransmissionReference xmlns="urn:mdGlobalName" />
  <CustomerID xmlns="urn:mdGlobalName">string</CustomerID>
  <Options xmlns="urn:mdGlobalName" />
  <Records xmlns="urn:mdGlobalName">
    <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>