URL

GET https://{api-url}/api/v2/tenants/{tenantId}/patches/{jobId}/scan/status

Sample URLs

https://{api-url}/api/v2/tenants/client_16/patches/8725a85a-b2c3-42f5-b6b1-3e20b4164fb3/scan/status
https://{api-url}/api/v2/tenants/client_16/patches/8725a85a-b2c3-42f5-b6b1-3e20b4164fb3/scan/status?pageNo=1&pageSize=1&isDescendingOrder=false&sortName=ipAddress
https://{api-url}/api/v2/tenants/client_16/patches/8725a85a-b2c3-42f5-b6b1-3e20b4164fb3/scan/status?queryString=aliasName:admin-pc&ipAddress:10.0.3.15

Parameters

FieldDefault Value
pageNo={pageNo}1
pageSize={pageSize}100
isDescendingOrder={true/false}true
sortName={field}name
queryString={queryString}NA

NA indicates that the value is not applicable.

Query variables

Query VariablesDescription
idUnique ID of the device.
ipAddressIP address of the device.
resourceNameName of the device.
hostNameHost name of the device.
aliasNameAlias name of the device.
resourceTypeType of the device.

Sample responses

{
    "results": [
        {
            "device": {
                "id": "2ca44d27-888e-4ddb-a5ee-89eb962798fe",
                "generalInfo": {
                    "osName": "Ubuntu 14.04.5 LTS",
                    "ipAddresses": "10.0.4.15",
                    "hostName": "opsrampdev",
                    "resourceType": "Linux",
                    "resourceName": "",
                    "aliasName": ""
                },
                "clientUniqueId": "client_16",
                "type": "DEVICE"
            },
            "scanStatus": {
                "lastPatchScanDate": "2019-06-23T11:14:43+0000",
                "lastPatchScanStatus": "success",
                "missingPatchesBeforeScan": 134,
                "missingPatchesAfterScan": 134,
                "noOfMissingPatchesFoundInLastScan": 0
            }
        },
        {
            "device": {
                "id": "2771a95d-496a-4c0b-a4f4-1cf1b7f94045",
                "generalInfo": {
                    "osName": "Microsoft Windows 7 Professional Service Pack 1, 32-bit",
                    "ipAddresses": "10.0.3.15",
                    "hostName": "ADMIN-PC",
                    "resourceType": "Work Station",
                    "resourceName": "",
                    "aliasName": "admin-pc",
                    "osBuildNumber": "7601"
                },
                "clientUniqueId": "client_16",
                "type": "DEVICE"
            },
            "scanStatus": {
                "lastPatchScanDate": "2019-06-23T11:42:56+0000",
                "lastPatchScanStatus": "success",
                "missingPatchesBeforeScan": 0,
                "missingPatchesAfterScan": 0,
                "noOfMissingPatchesFoundInLastScan": 0
            }
        }
    ],
    "totalResults": 2,
    "orderBy": "name",
    "pageNo": 1,
    "pageSize": 100,
    "totalPages": 1,
    "nextPage": false,
    "previousPageNo": 0,
    "descendingOrder": true
}

A sample response where the query is based on ipAddress:

{
    "results": [
        {
            "device": {
                "id": "2771a95d-496a-4c0b-a4f4-1cf1b7f94045",
                "generalInfo": {
                    "osName": "Microsoft Windows 7 Professional Service Pack 1, 32-bit",
                    "ipAddresses": "10.0.3.15",
                    "hostName": "ADMIN-PC",
                    "resourceType": "Work Station",
                    "resourceName": "",
                    "aliasName": "admin-pc",
                    "osBuildNumber": "7601"
                },
                "clientUniqueId": "client_16",
                "type": "DEVICE"
            },
            "scanStatus": {
                "lastPatchScanDate": "2019-06-23T11:42:56+0000",
                "lastPatchScanStatus": "success",
                "missingPatchesBeforeScan": 0,
                "missingPatchesAfterScan": 0,
                "noOfMissingPatchesFoundInLastScan": 0
            }
        }
    ],
    "totalResults": 2,
    "orderBy": "ipAddress",
    "pageNo": 1,
    "pageSize": 1,
    "totalPages": 2,
    "nextPage": true,
    "nextPageNo": 2,
    "previousPageNo": 0,
    "descendingOrder": false
}

A sample response where the query is based on aliasName and ipAddress:

{
    "results": [
        {
            "device": {
                "id": "2771a95d-496a-4c0b-a4f4-1cf1b7f94045",
                "generalInfo": {
                    "osName": "Microsoft Windows 7 Professional Service Pack 1, 32-bit",
                    "ipAddresses": "10.0.3.15",
                    "hostName": "ADMIN-PC",
                    "resourceType": "Work Station",
                    "resourceName": "",
                    "aliasName": "admin-pc",
                    "osBuildNumber": "7601"
                },
                "clientUniqueId": "client_16",
                "type": "DEVICE"
            },
            "scanStatus": {
                "lastPatchScanDate": "2019-06-23T11:42:56+0000",
                "lastPatchScanStatus": "success",
                "missingPatchesBeforeScan": 0,
                "missingPatchesAfterScan": 0,
                "noOfMissingPatchesFoundInLastScan": 0
            }
        }
    ],
    "totalResults": 1,
    "orderBy": "name",
    "pageNo": 1,
    "pageSize": 100,
    "totalPages": 1,
    "nextPage": false,
    "previousPageNo": 0,
    "descendingOrder": true
}

A sample response where the query is based on aliasName:

{
    "results": [
        {
            "device": {
                "id": "2771a95d-496a-4c0b-a4f4-1cf1b7f94045",
                "generalInfo": {
                    "osName": "Microsoft Windows 7 Professional Service Pack 1, 32-bit",
                    "ipAddresses": "10.0.3.15",
                    "hostName": "ADMIN-PC",
                    "resourceType": "Work Station",
                    "resourceName": "",
                    "aliasName": "admin-pc",
                    "osBuildNumber": "7601"
                },
                "clientUniqueId": "client_16",
                "type": "DEVICE"
            },
            "scanStatus": {
                "lastPatchScanDate": "2019-06-23T11:42:56+0000",
                "lastPatchScanStatus": "success",
                "missingPatchesBeforeScan": 0,
                "missingPatchesAfterScan": 0,
                "noOfMissingPatchesFoundInLastScan": 0
            }
        }
    ],
    "totalResults": 1,
    "orderBy": "name",
    "pageNo": 1,
    "pageSize": 100,
    "totalPages": 1,
    "nextPage": false,
    "previousPageNo": 0,
    "descendingOrder": true
}

A sample response where the query is based on resourceType:

{
    "results": [
        {
            "device": {
                "id": "2ca44d27-888e-4ddb-a5ee-89eb962798fe",
                "generalInfo": {
                    "osName": "Ubuntu 14.04.5 LTS",
                    "ipAddresses": "10.0.4.15",
                    "hostName": "opsrampdev",
                    "resourceType": "Linux",
                    "resourceName": "",
                    "aliasName": ""
                },
                "clientUniqueId": "client_16",
                "type": "DEVICE"
            },
            "scanStatus": {
                "lastPatchScanDate": "2019-06-23T11:14:43+0000",
                "lastPatchScanStatus": "success",
                "missingPatchesBeforeScan": 134,
                "missingPatchesAfterScan": 134,
                "noOfMissingPatchesFoundInLastScan": 0
            }
        }
    ],
    "totalResults": 1,
    "orderBy": "name",
    "pageNo": 1,
    "pageSize": 100,
    "totalPages": 1,
    "nextPage": false,
    "previousPageNo": 0,
    "descendingOrder": true
}

A sample response where the query is based on a specific ipAddress:

{
    "results": [
        {
            "device": {
                "id": "2771a95d-496a-4c0b-a4f4-1cf1b7f94045",
                "generalInfo": {
                    "osName": "Microsoft Windows 7 Professional Service Pack 1, 32-bit",
                    "ipAddresses": "10.0.3.15",
                    "hostName": "ADMIN-PC",
                    "resourceType": "Work Station",
                    "resourceName": "",
                    "aliasName": "admin-pc",
                    "osBuildNumber": "7601"
                },
                "clientUniqueId": "client_16",
                "type": "DEVICE"
            },
            "scanStatus": {
                "lastPatchScanDate": "2019-06-23T11:42:56+0000",
                "lastPatchScanStatus": "success",
                "missingPatchesBeforeScan": 0,
                "missingPatchesAfterScan": 0,
                "noOfMissingPatchesFoundInLastScan": 0
            }
        }
    ],
    "totalResults": 1,
    "orderBy": "name",
    "pageNo": 1,
    "pageSize": 100,
    "totalPages": 1,
    "nextPage": false,
    "previousPageNo": 0,
    "descendingOrder": true
}

A sample response where the query is based on a specific hostName:

{
    "results": [
        {
            "device": {
                "id": "2ca44d27-888e-4ddb-a5ee-89eb962798fe",
                "generalInfo": {
                    "osName": "Ubuntu 14.04.5 LTS",
                    "ipAddresses": "10.0.4.15",
                    "hostName": "opsrampdev",
                    "resourceType": "Linux",
                    "resourceName": "",
                    "aliasName": ""
                },
                "clientUniqueId": "client_16",
                "type": "DEVICE"
            },
            "scanStatus": {
                "lastPatchScanDate": "2019-06-23T11:14:43+0000",
                "lastPatchScanStatus": "success",
                "missingPatchesBeforeScan": 134,
                "missingPatchesAfterScan": 134,
                "noOfMissingPatchesFoundInLastScan": 0
            }
        }
    ],
    "totalResults": 1,
    "orderBy": "name",
    "pageNo": 1,
    "pageSize": 100,
    "totalPages": 1,
    "nextPage": false,
    "previousPageNo": 0,
    "descendingOrder": true
}

A sample response where the query is based on deviceId:

{
    "results": [
        {
            "device": {
                "id": "2771a95d-496a-4c0b-a4f4-1cf1b7f94045",
                "generalInfo": {
                    "osName": "Microsoft Windows 7 Professional Service Pack 1, 32-bit",
                    "ipAddresses": "10.0.3.15",
                    "hostName": "ADMIN-PC",
                    "resourceType": "Work Station",
                    "resourceName": "",
                    "aliasName": "admin-pc",
                    "osBuildNumber": "7601"
                },
                "clientUniqueId": "client_16",
                "type": "DEVICE"
            },
            "scanStatus": {
                "lastPatchScanDate": "2019-06-23T11:42:56+0000",
                "lastPatchScanStatus": "success",
                "missingPatchesBeforeScan": 0,
                "missingPatchesAfterScan": 0,
                "noOfMissingPatchesFoundInLastScan": 0
            }
        }
    ],
    "totalResults": 1,
    "orderBy": "name",
    "pageNo": 1,
    "pageSize": 100,
    "totalPages": 1,
    "nextPage": false,
    "previousPageNo": 0,
    "descendingOrder": true
}