Inventory Scan Action


This API allows one to perform asset scan on selected computers or all computers managed by Endpoint Central server.

  • Functionality
  • Perform scan action on particular computers
  • HTTP Method 
  • POST
  • API URI
  • api/1.4/inventory/computers/scan

Request Data

 
{
"resourceids": [112,113]
}

Response Data

 
{
"message_response": {
"computers": {
"status": "Scan initiated successfully"
}
},
"status": "success",
"message_version": "1.0",
"message_type": "computers"
}

Scan All Action

  • Functionality
  • Perform scan on all computers
  • HTTP Method 
  • POST
  • API URI
  • api/1.4/inventory/computers/scanall

Response Data

 
{
"message_response": {
"computers": {
"status": "Scan initiated successfully"
}
},
"status": "success",
"message_version": "1.0",
"message_type": "computers"
}