Mutation
mutation DeleteEmailSuppression($input: DeleteEmailSuppressionInput!) {
deleteEmailSuppression(input: $input) {
error {
message
type
code
fields {
field
message
type
}
}
}
}Variables
{
"input": {
"emailAddress": "string"
}
}Response
{
"data": {
"deleteEmailSuppression": {
"error": {
"message": "string",
"type": "VALIDATION",
"code": "string",
"fields": [
{
"field": "string",
"message": "string",
"type": "VALIDATION"
}
]
}
}
}
}Mutations
deleteEmailSuppression
Removes a hard-bounce or manual suppression for one email address. Spam-complaint suppressions cannot be removed.
MUTATION
deleteEmailSuppression(input: DeleteEmailSuppressionInput!): DeleteEmailSuppressionOutput!Arguments
input
required
Returns
error
Mutation
mutation DeleteEmailSuppression($input: DeleteEmailSuppressionInput!) {
deleteEmailSuppression(input: $input) {
error {
message
type
code
fields {
field
message
type
}
}
}
}Variables
{
"input": {
"emailAddress": "string"
}
}Response
{
"data": {
"deleteEmailSuppression": {
"error": {
"message": "string",
"type": "VALIDATION",
"code": "string",
"fields": [
{
"field": "string",
"message": "string",
"type": "VALIDATION"
}
]
}
}
}
}Was this page helpful?

