Global Email V3:Batch XML: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{ | {{GlobalEmailV3Nav | ||
|ExampleCollapse= | |ExampleCollapse= | ||
}} | }} | ||
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. | ||
<pre> | <pre> | ||
<Request> | <Request> | ||
<TransmissionReference>string</TransmissionReference> | <TransmissionReference>string</TransmissionReference> | ||
<CustomerID>string</CustomerID | <CustomerID>string</CustomerID> | ||
<Options>string</Options> | |||
<Options>string</Options> | |||
<Records> | <Records> | ||
<RequestRecord> | <RequestRecord> | ||
Line 23: | Line 21: | ||
<RecordID>string</RecordID> | <RecordID>string</RecordID> | ||
<Email>string</Email> | <Email>string</Email> | ||
</RequestRecord> | |||
<RequestRecord> | |||
... | |||
</RequestRecord> | </RequestRecord> | ||
</Records> | </Records> | ||
Line 57: | Line 58: | ||
<TopLevelDomainName>string</TopLevelDomainName> | <TopLevelDomainName>string</TopLevelDomainName> | ||
<DateChecked>string</DateChecked> | <DateChecked>string</DateChecked> | ||
</ResponseRecord> | |||
<ResponseRecord> | |||
... | |||
</ResponseRecord> | </ResponseRecord> | ||
</Records> | </Records> | ||
Line 63: | 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>