Mutation
cancel_pre_scan_check
Cancels a pre-scan check.
        Arguments
input: ManagePreScanCheckInput!
The unique identifier of the site you want to cancel a pre-scan check for.
Input Fields
site_id():
                                                                   ID!
                
                        The unique identifier of the site with the pre-scan check.
                    Return Fields
Example
                Query
                
                mutation CancelPreScanCheck($input: ManagePreScanCheckInput!) {
  cancel_pre_scan_check(input: $input)
}
                    Variables
                    
            {
  "input": {
    "site_id": "1"
  }
}
                Result
                
        {
  "data": {
    "cancel_pre_scan_check": true
  }
}