This wiki is no longer being updated as of December 10, 2025.
|
Global Email V3:REST JSON: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| (3 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
{{ | {{GlobalEmailV3Nav | ||
|ExampleCollapse= | |ExampleCollapse= | ||
}} | }} | ||
| Line 11: | Line 11: | ||
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 21: | 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 39: | 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"
}]
}