This wiki is no longer being updated as of December 10, 2025.
|
Global Email V3:Batch XML: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
{{ | {{GlobalEmailV3Nav | ||
|ExampleCollapse= | |ExampleCollapse= | ||
}} | }} | ||
| Line 67: | Line 67: | ||
[[Category:Global Email]] | [[Category:Global Email V3]] | ||
[[Category:Reference]] | [[Category:Reference]] | ||
Latest revision as of 17:14, 23 May 2019
| Global Email V3 Navigation | ||||||
|---|---|---|---|---|---|---|
| ||||||
| ||||||
| ||||||
| ||||||
| Sample Code |
XML Batch Request
A maximum of up to 100 records per request can be sent.
<Request>
<TransmissionReference>string</TransmissionReference>
<CustomerID>string</CustomerID>
<Options>string</Options>
<Records>
<RequestRecord>
<RecordID>string</RecordID>
<Email>string</Email>
</RequestRecord>
<RequestRecord>
<RecordID>string</RecordID>
<Email>string</Email>
</RequestRecord>
<RequestRecord>
...
</RequestRecord>
</Records>
</Request>
XML Batch 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>
<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>
...
</ResponseRecord>
</Records>
</Response>