Skip to content

bulkRefreshHosts

Refresh multiple hosts with a single request.

Arguments

Argument Type Description
input (required) BulkRefreshHostsInput! Input for refreshing multiple hosts with a single request.

Returns

BulkRefreshHostsReply!

Sample

mutation BulkRefreshHosts($input: BulkRefreshHostsInput!) {
  bulkRefreshHosts(input: $input)
}
{
  "input": {
    "ids": [
      "example-string"
    ],
    "shouldRunAsynchronously": true
  }
}
{
  "data": {
    "bulkRefreshHosts": {
      "data": [
        {}
      ]
    }
  }
}