Get Domain Deliverability Campaign
sesv2_get_domain_deliverability_campaign | R Documentation |
Retrieve all the deliverability data for a specific campaign¶
Description¶
Retrieve all the deliverability data for a specific campaign. This data is available for a campaign only if the campaign sent email by using a domain that the Deliverability dashboard is enabled for.
Usage¶
Arguments¶
CampaignId
[required] The unique identifier for the campaign. The Deliverability dashboard automatically generates and assigns this identifier to a campaign.
Value¶
A list with the following syntax:
list(
DomainDeliverabilityCampaign = list(
CampaignId = "string",
ImageUrl = "string",
Subject = "string",
FromAddress = "string",
SendingIps = list(
"string"
),
FirstSeenDateTime = as.POSIXct(
"2015-01-01"
),
LastSeenDateTime = as.POSIXct(
"2015-01-01"
),
InboxCount = 123,
SpamCount = 123,
ReadRate = 123.0,
DeleteRate = 123.0,
ReadDeleteRate = 123.0,
ProjectedVolume = 123,
Esps = list(
"string"
)
)
)