Release 2.15 API

March 15, 2025

Before understanding the API release highlights, learn more about the API server URL to be used in your API requests by referring to the Know Your Qualys API Server URL section. For this API Release Notes, <qualys_base_url> is mentioned in the sample API requests.

What's New?

Extended Support to Oracle Cloud Infrastructure (OCI) for Create Assessment Report API

New or Updated API Updated
API Endpoint (Deprecation timeline - August 2025)  /cloudview-api/rest/v1/report/assessment/create
API Endpoint (New) /cloudview-api/rest/v2/report/assessment/create
Method POST
DTD or XSD changes Not Applicable

With this release, we have added a new support for OCI in the "cloudType" parameter of the Create Assessment report. Now, you can generate reports for your OCI resources and their control evaluations, gaining a deeper insight into the security posture of your OCI enviro`

Input ParametersInput Parameters

Parameter

Mandatory/Optional

Data Type

Description

cloudType

Mandatory

String

Provide the required cloudType to generate an assessment report.

Select from the available cloud providers: AWS, Azure, GCP and OCI.

Sample - Generate an Assessment Report for the OCI CloudTypeSample - Generate an Assessment Report for the OCI CloudType

API Request

curl --location 'https://qualysguard.qualys.com/cloudview-api/rest/v2/report/assessment/create' \
--header 'Content-Type: application/json' \
--header 'Accept: */*' \
--header 'Authorization: Basic xxxxxxxxxxxxxxxxxxxxxx' \

API Response

      {
    "reportName": "string",
    "description": "string",
    "format": "string",
    "resourceSummaryInclude": true,
    "cloudType": "OCI",
    "query": "string",
    "startDate": "2025-01-24T00:00:00Z",
    "endDate": "2025-01-24T00:00:00Z",
    "policyIds": [
        "111111-11111-xxxx-xxxx-xxxxxxxxxxxx"
    ],
    "tagIds": [
        0
    ],
    "connectorIds": [
        ""
    ],
    "executionType": "RUN_TIME"
}