Mutation

update_folder_email_recipient

Updates the email address of an existing recipient of scan completion reports for a folder.

Arguments

input: UpdateFolderEmailRecipientInput!

The fields used to specify the email recipient that you want to update, and what their new email address should be.


Input Fields

id(): ID!
the unique identifier of the email recipient that you want to update.
email(): String!
The new email address that you want to send scan completion reports to.

Return Fields

email_recipient(): EmailRecipient
The updated email recipient.

Example

Query
mutation UpdateFolderEmailRecipient($input: UpdateFolderEmailRecipientInput!) {
  update_folder_email_recipient(input: $input) {
    email_recipient {
      id
      email
    }
  }
}
Variables
{
  "input": {
    "id": "4",
    "email": null
  }
}