Customer Registration
Creates an Azure Blob Storage integration.
Input ParametersInput Parameters
Parameter |
Mandatory/Optional |
Data Type |
Description |
---|---|---|---|
name |
Mandatory |
Text |
Name of the customer/Integration. You can choose the name as per your preference. |
compressData |
Optional |
Boolean |
If set to true, the data is compressed in the .gz format. By default, it is set to true. |
containerName |
Mandatory |
Text |
Name of the container where a customer needs PC data. |
connectionString |
Mandatory |
String |
Connection string, which is needed to post data to Azure Storage Blob. |
API Request
"curl -X POST""<qualys_gateway_url>/partner-integration/azure/storage-blob/pc""-H""Authorization: Bearer <token>"
Request Body
{
"name":"Customer Name or integration name",
"compressData":true,
"containerName":"qualys-pc-data",
"connectionString":"sampleBlobEndpoint"
}
Response
{
"integrationId":5
}