Delete Schedule API
This API is used to delete an existing schedule.
Input ParametersInput Parameters
Parameter | Mandatory/ Optional | Data Type | Description |
---|---|---|---|
schedulerIds | Mandatory | List of strings | Provide the list of schedule IDs for deletion. |
Sample: Delete a scheduleSample: Delete a schedule
API Request
curl -X POST
'<qualys_base_url>/sm/v1/scheduler/delete'
-H 'Content-Type: application/json'
-H 'Authorization: Bearer {{authToken}}'
-d '{
"schedulerIds": [
"c62f7279-3d05-4cf...."
]
}
API Response
{
"errorCode": "0",
"message": "Scheduler deleted successfully",
"body": [
"c62f7279-3d05-4cfb...."
]
}