Using this API, you can list all technology IDs and names associated with the label ID.
|
Parameter |
Required/ Optional |
Data Type |
Description |
|---|---|---|---|
| Authorization | Required | String | Enter the Bearer token. |
| labelId={value} |
Optional | Integer |
Label ID for which associated technologies are to be displayed. If no label ID is specified, technology details associated with all labels are returned. |
API Request
curl -X 'GET' '<qualys_base_url>/pcas/v1/library/technology?labelId=<labelId> '
-H 'accept: application/json'
-H 'Authorization: Bearer <AuthToken>
JSON Output
{
"technologies": [
{
"technologyId": 346,
"technologyName": "Debian GNU/Linux 11.x"
},
{
"technologyId": 391,
"technologyName": "ISC BIND 9.x"
},
{
"technologyId": 78,
"technologyName": "MariaDB 10.x"
}
]
}