Create Product

POSTpartner-integration/product

Create the CDR product to integrate with Qualys. Store the ProductId generated from this API for later use.

Input ParametersInput Parameters

Parameter Optional/Mandatory Data Type Description
productname Mandatory string Provide the name of the product as "CDR".

Create ProductCreate Product

API Request

curl -X POST '<qualys_gateway_url>/partner-integration/product' \
  -H 'accept: application/json' \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer <Token>'   

Request POST Data (integration.json)

{
    "productname": "CDR"
 }
    

JSON Output

{
    "cipsProductId": 1504,
    "productName": "cdr"
}