Skip to content

Get Suppressed Destination

sesv2_get_suppressed_destination R Documentation

Retrieves information about a specific email address that's on the suppression list for your account

Description

Retrieves information about a specific email address that's on the suppression list for your account.

Usage

sesv2_get_suppressed_destination(EmailAddress)

Arguments

EmailAddress

[required] The email address that's on the account suppression list.

Value

A list with the following syntax:

list(
  SuppressedDestination = list(
    EmailAddress = "string",
    Reason = "BOUNCE"|"COMPLAINT",
    LastUpdateTime = as.POSIXct(
      "2015-01-01"
    ),
    Attributes = list(
      MessageId = "string",
      FeedbackId = "string"
    )
  )
)

Request syntax

svc$get_suppressed_destination(
  EmailAddress = "string"
)