Mutation

create_pre_scan_check

Run a pre-scan check to confirm that the site is reachable.

Arguments

input: ManagePreScanCheckInput!

The unique identifier of the site you want to create a pre-scan check.


Input Fields

site_id(): ID!
The unique identifier of the site with the pre-scan check.

Return Fields

site_id(): ID!
The unique identifier of the site for the pre-scan check.
The error state of the new pre-scan check.

Example

Query
mutation CreatePreScanCheck($input: ManagePreScanCheckInput!) {
  create_pre_scan_check(input: $input) {
    site_id
    error
  }
}
Variables
{
  "input": {
    "site_id": "1"
  }
}
Result
{
  "data": {
    "create_pre_scan_check": {
      "site_id": null
      "error": null
    }
  }
}