Fetch a List of Sensor Profiles
Use this API to get a list of sensor profiles in your account.
Input ParametersInput Parameters
| Parameter | Mandatory/Optional | Data Type | Description |
|---|---|---|---|
| filter | Optional | string | Filter the sensor profiles list by providing a query using Qualys syntax. Refer to the “How to Search” topic in the online help for assistance with creating your query. |
SampleSample
API request
curl -X GET
"<qualys_base_url>/csapi/v1.3/sensorProfile"
-H "accept: application/json"
-H "Authorization: Bearer <token>"
Response
{
"data": [
{
"profileId": "24cb8f30-c3b9-461c-b6fc-bc1902fc3906",
"profileName": "test123",
"profileType": "General",
"associatedSensorsCount": 4,
"createdBy": "john_doe",
"created": "1768979006698",
"updatedBy": "john_doe",
"updated": "1768979006698",
"tags": [],
"isVulnPropagation": false,
"awsFargateVulnPropagationConfig": null
},
{
"profileId": "6c7ebe4c-33af-42d9-8e63-daaa247fc959",
"profileName": "test123",
"profileType": "General",
"associatedSensorsCount": 9,
"createdBy": "john_doe",
"created": "1768900013143",
"updatedBy": "john_doe",
"updated": "1768900013143",
"tags": [],
"isVulnPropagation": true,
"awsFargateVulnPropagationConfig": {
"awsVuLnPropagationMode": "ENABLE_VULNERABILITY_PROPAGATION_FOR_CLUSTERS",
"value": []
},
],
"count": 2
}