Retrieval of VM
manager Tools
Use the GET operation on the
api/sam/v3/vmmanagertools endpoint to retrieve information about VM
Manager Tools that are defined in your infrastructure. The REST API returns the list of all
tools that were not deleted.
Permission required: To retrieve information about VM manager Tools, you must have the 'Manage VM Managers and Servers' permission and All Computers group assigned.
| Operation details | Description |
|---|---|
| Operation | GET /api/sam/v3/vmmanagertools |
| Purpose | Returns a list of VM Manager Tools. |
| HTTP method | GET |
| Resource URI | https://server_host_name:port_number/api/sam/v3/vmmanagertools?token=token |
Request Content-Type |
application/json |
Response Content-Type |
application/json |
| Normal HTTP response codes | 200 – OK |
| Error HTTP response codes |
Message body includes an error message with details. |
| Attributes | Possible values |
|---|---|
id |
ID of the VM Manager Tool |
remoteComputerId |
Data Source computer ID of the endpoint where VM Manager Tool is installed. |
computerId |
Computer ID of the endpoint where VM Manager Tool is installed. |
version |
Version of the VM Manager Tool. This attribute is omitted when the tool version cannot be determined, which may occur if the VM Manager Tool was not installed through BigFix Inventory. |
installDate |
The date and time when the VM Manager Tool was installed. |
deleted |
Indicates whether the VM Manager Tool was removed from BigFix Inventory. |
Example HTTP conversation
Request
GET http://localhost:9081/api/sam/v3/vmmanagertools
?token=7adc3efb175e2bc0f4484bdd2efca54a8fa04623Response body (JSON)
[{
"id":1,
"remoteComputerId":3205710,
"computerId":5,
"version":"11.0.8.0",
"installDate":"2025-11-01T12:30:00Z",
"deleted":false
}]