Mutation

delete_folder_email_recipient

permanently removes an existing recipient of scan completion reports for a folder.

Arguments

input: DeleteFolderEmailRecipientInput!

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 DeleteFolderEmailRecipient($input: DeleteFolderEmailRecipientInput!) {
  delete_folder_email_recipient(input: $input) {
    id
  }
}
Variables
{
  "input": {
    "id": "1"
  }
}