Global Email V3:REST JSON: Difference between revisions
Jump to navigation
Jump to search
Created page with "{{GlobalEmailNav |ExampleCollapse= }} {{CustomTOC}} ==REST Request== <pre> https://globalemail.melissadata.net/V3/WEB/GlobalEmail/doGlobalEmail ?t={TransmissionReference} &..." |
No edit summary |
||
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{ | {{GlobalEmailV3Nav | ||
|ExampleCollapse= | |ExampleCollapse= | ||
}} | }} | ||
Line 7: | Line 7: | ||
==REST Request== | ==REST Request== | ||
There is no recordID element because a REST request can only submit one record per request. | |||
<pre> | <pre> | ||
https://globalemail.melissadata.net/V3/WEB/GlobalEmail/doGlobalEmail | https://globalemail.melissadata.net/V3/WEB/GlobalEmail/doGlobalEmail | ||
?t={TransmissionReference} | ?t={TransmissionReference} | ||
&id={ | &id={LicenseKey} | ||
&opt={Options} | &opt={Options} | ||
&email={EmailAddress} | &email={EmailAddress} | ||
Line 20: | Line 21: | ||
<pre> | <pre> | ||
{ | { | ||
"Version":" | "Version":"string", | ||
"TransmissionReference":" | "TransmissionReference":"string", | ||
"TransmissionResults":" | "TransmissionResults":"string", | ||
"TotalRecords":" | "TotalRecords":"string", | ||
"Records":[{ | "Records":[{ | ||
"RecordID":" | "RecordID":"string", | ||
"Results":" | "Results":"string", | ||
"EmailAddress":" | "EmailAddress":"string", | ||
"MailboxName":" | "MailboxName":"string", | ||
"DomainName":" | "DomainName":"string", | ||
"TopLevelDomain":" | "TopLevelDomain":"string", | ||
"TopLevelDomainName":" | "TopLevelDomainName":"string", | ||
"DateChecked":" | "DateChecked":"string" | ||
}] | }] | ||
} | } | ||
Line 38: | Line 39: | ||
[[Category:Global Email]] | [[Category:Global Email V3]] | ||
[[Category:Reference]] | [[Category:Reference]] |
Latest revision as of 17:13, 23 May 2019
Global Email V3 Navigation | ||||||
---|---|---|---|---|---|---|
| ||||||
| ||||||
| ||||||
| ||||||
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=json
JSON Response
{ "Version":"string", "TransmissionReference":"string", "TransmissionResults":"string", "TotalRecords":"string", "Records":[{ "RecordID":"string", "Results":"string", "EmailAddress":"string", "MailboxName":"string", "DomainName":"string", "TopLevelDomain":"string", "TopLevelDomainName":"string", "DateChecked":"string" }] }