Fetch Details of a Sensor Profile

Use this API to get details of a sensor profile in your account.

GET/csapi/v1.3/sensorProfile/{sensorProfileId}

Input ParametersInput Parameters

Parameter Mandatory/Optional Data Type Description
sensorProfileId Mandatory string The ID/UUID of the sensor profile for which you want to get details.
pageNumber Optional integer The page to be returned. Page numbers start with 1.
pageSize Optional integer The number of records per page to be included in the response. The default value is 50.
sort Optional string Sort the results using a Qualys token. For example created:desc.

Refer to the “Sortable tokens” topic in the online help for more information.

SampleSample

API request

    curl -X GET
"<qualys_base_url>/csapi/v1.3/sensorProfile/6963d471-7598-4d4d-b95ce540c75745b2?pageNo=0&pageSize=50&sort=created%3Adesc" 
-H "accept: application/json" 
-H "Authorization: Bearer <token>"

Response

   {
  "profileId": "4833b396-2537-41cb-963f-f509bef04208",
  "profileName": "as",
  "profileType": "Cluster",
  "description": "a",
  "createdBy": "jack_reader",
  "created": "1721285709667",
  "updatedBy": "jack_reader",
  "updated": "1721285709667",
  "associatedSensorsCount": 0,
  "associatedRegistriesCount": 0,
  "associatedSensors": [],
  "associatedRegistries": null,
  "config": {
    "weeklyInactiveWindowSchedules": [],
    "vulnerabilityManagement": {
      "containerScanningInterval": null,
      "imageExclusionRegexList": null,
      "scanningPolicy": null
    },
    "performanceManagement": {
      "maxNoOfArchivedLogFiles": 5,
      "maxLogFileSize": 10,
      "logSecurityLevel": "INFORMATION"
    }
  },
  "tags": [{
            "uuid": "a959914f-061d-4925-a372-8b84512b28ec",
            "id": 141753861,
            "name": "Tag3",
            "backgroundColor": "#000000",
            "foregroundColor": "#000000",
            "icon": "",
            "criticalityScore": 0,
            "tagType": null   
          }]
}