Mutation

delete_site_email_recipient

Permanently removes an existing recipient of scan completion reports.

Arguments

input: DeleteSiteEmailRecipientInput!

The fields used to specify the email recipient that you want to delete.


Input Fields

id(): ID!
The unique identifier of the recipient that you want to delete.

Return Fields

id(): ID
The unique identifier of the recipient that was deleted.

Example

Query
mutation DeleteSiteEmailRecipient($input: DeleteSiteEmailRecipientInput!) {
  delete_site_email_recipient(input: $input) {
    id
  }
}
Variables
{
  "input": {
    "id": "5"
  }
}