Create Compliance Report Run
Create a new compliance report run.
Path Parameters
- configuration_id string required
Performs the operation on the compliance report configuration with the specified ID.
- application/json
Request Body
- name string
Name of the new compliance report run that will be created. If not given, default uses
{configuration ID} - {MM/DD/YYYY(Created time)}
.
Responses
- 202
- default
Success
- application/api.clumio.report-compliance-runs=v1+json
- Schema
- Example (from schema)
Schema
- task_id string
The Clumio-assigned ID of the task created for compliance report run generation. The progress of the task can be monitored using the
GET /tasks/{task_id}
endpoint.
{
"task_id": "string"
}
Error
- application/json
- Schema
- Example (from schema)
Schema
errors object[]
A list of errors encountered during runtime.
error_code uint32error_message stringThe reason for the error.
{
"errors": [
{
"error_code": 0,
"error_message": "string"
}
]
}
Loading...