Get Details of the Azure Sentinel Integration

GET /partner-integration/azure/sentinel/{integrationId}/vm

GET  /partner-integration/azure/sentinel/vm

When you want to get details of a particular Azure Sentinel integration, you can fetch the configuration and integration details using the unique integration identifier (id) of the Azure Sentinel integration. You can fetch the configuration and integration details with or without the unique integration identifier (id) of the Azure Sentinel integration.

Currently, you can only fetch details for the VM/VMDR app.

Get Integration Details of Azure Sentinel IntegrationGet Integration Details of Azure Sentinel Integration

Let us now see an example to fetch the integration details of Azure Sentinel integration.

API Request

"curl -X GET""<qualys_gateway_url>/partner-integration/azure/sentinel/{integrationId}/vm""-H""Authorization: Bearer <token>"      
    

OR

If you are not aware of the integration ID, use the following request to fetch details without integration Id

API Request (Without ID)

"curl -X GET""<qualys_gateway_url>/partner-integration/azure/sentinel/vm""--header""Content-Type: application/x-www-form-urlencoded""\\
-H""Authorization: Bearer <token>"      
    

JSON Output

{
   "        ""integrationId”=68,
        ""name""='Sample Integration',
         ""customerId""=123456,
        ""customerUUID""='xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx',
        ""workspaceId""='XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX',
        ""minSeverity""=3,
         ""baseCategory""=IG,
        ""customLogName""='Test',
        ""apiVersion""='2016-04-01',
        ""resultSectionNeeded""=true}""        ""validIntegration":true
}