Difference between revisions of "Global Email V3:REST XML"

From Melissa Data Wiki
Jump to navigation Jump to search
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{GlobalEmailNav
{{GlobalEmailV3Nav
|ExampleCollapse=
|ExampleCollapse=
}}
}}
Line 6: Line 6:
{{CustomTOC}}
{{CustomTOC}}


==SOAP WSDL==
==REST Request==
There is no recordID element because a REST request can only submit one record per request.
<pre>
<pre>
http://globalemail.melissadata.net/V3/SOAP/GlobalEmail?wsdl
https://globalemail.melissadata.net/V3/WEB/GlobalEmail/doGlobalEmail
http://globalemail.melissadata.net/V3/SOAP/GlobalEmail?singleWsdl
?t={TransmissionReference}
&id={LicenseKey}
&opt={Options}
&email={EmailAddress}
&format=xml
</pre>
</pre>




==SOAP Batch Request==
==XML Response==
A maximum of up to 100 records per request can be sent.
<pre>
<pre>
<?xml version="1.0"?>
<?xml version="1.0"?>
<Request xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Response>
  <TransmissionReference xmlns="urn:mdGlobalEmail" />
  <CustomerID xmlns="urn:mdGlobalEmail">string</CustomerID>
  <Options xmlns="urn:mdGlobalEmail" />
  <Records xmlns="urn:mdGlobalEmail">
    <RequestRecord>
      <RecordID>string</RecordID>
      <Email />
    </RequestRecord>
    <RequestRecord>
      <RecordID>string</RecordID>
      <Email />
    </RequestRecord>
    <RequestRecord>
      ...
    </RequestRecord>
  </Records>
</Request>
</pre>
 
 
==XML Batch Response==
<pre>
<?xml version="1.0"?>
<Response xmlns=urn:mdGlobalAddress xmlns:i=http://www.w3.org/2001/XMLSchema-instance>
   <Version>string</Version>
   <Version>string</Version>
   <TransmissionReference>string</TransmissionReference>
   <TransmissionReference>string</TransmissionReference>
Line 47: Line 27:
   <TotalRecords>string</TotalRecords>
   <TotalRecords>string</TotalRecords>
   <Records>
   <Records>
    <ResponseRecord>
     <ResponseRecord>  
      <RecordID>string</RecordID>
      <Results>string</Results>
      <EmailAddress>string</EmailAddress>
      <MailboxName>string</MailboxName>
      <DomainName>string</DomainName>
      <TopLevelDomain>string</TopLevelDomain>
      <TopLevelDomainName>string</TopLevelDomainName>
      <DateChecked>string</DateChecked>
    </ResponseRecord>
     <ResponseRecord>
       <RecordID>string</RecordID>
       <RecordID>string</RecordID>
       <Results>string</Results>
       <Results>string</Results>
Line 66: Line 36:
       <TopLevelDomainName>string</TopLevelDomainName>
       <TopLevelDomainName>string</TopLevelDomainName>
       <DateChecked>string</DateChecked>
       <DateChecked>string</DateChecked>
    </ResponseRecord>
     </ResponseRecord>  
    <ResponseRecord>
      ...
     </ResponseRecord>
   </Records>
   </Records>
</Response>
</Response>
Line 75: Line 42:




[[Category:Global Email]]
[[Category:Global Email V3]]
[[Category:Reference]]
[[Category:Reference]]

Latest revision as of 17:14, 23 May 2019

← Global Email V3

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



REST Request

There is no recordID element because a REST request can only submit one record per request.

https://globalemail.melissadata.net/V3/WEB/GlobalEmail/doGlobalEmail
?t={TransmissionReference}
&id={LicenseKey}
&opt={Options}
&email={EmailAddress}
&format=xml


XML Response

<?xml version="1.0"?>
<Response>
  <Version>string</Version>
  <TransmissionReference>string</TransmissionReference>
  <TransmissionResults>string</TransmissionResults>
  <TotalRecords>string</TotalRecords>
  <Records>
    <ResponseRecord> 
      <RecordID>string</RecordID>
      <Results>string</Results>
      <EmailAddress>string</EmailAddress>
      <MailboxName>string</MailboxName>
      <DomainName>string</DomainName>
      <TopLevelDomain>string</TopLevelDomain>
      <TopLevelDomainName>string</TopLevelDomainName>
      <DateChecked>string</DateChecked>
    </ResponseRecord> 
  </Records>
</Response>