Schema for the Continuous Compliance Engine API
- Get status of Executions and async tasks
Get status of Executions or async tasks by id
Get status of Executions...
Masking API (5.1.42)
Download OpenAPI description
Languages
Servers
Mock server
https://help-api.delphix.com/_mock/continuous-compliance-engine/2025.2.0.0/cc-engine-apis-2025.2.0.0
https://help-api.delphix.com/masking/api/v5.1.42
- Mock serverhttps://help-api.delphix.com/_mock/continuous-compliance-engine/2025.2.0.0/cc-engine-apis-2025.2.0.0/monitor-task
- https://help-api.delphix.com/masking/api/v5.1.42/monitor-task
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://help-api.delphix.com/_mock/continuous-compliance-engine/2025.2.0.0/cc-engine-apis-2025.2.0.0/monitor-task?page_number=1&page_size=0&state=RUNNING' \
-H 'Authorization: YOUR_API_KEY_HERE'Success
Example: [{"taskId":123,"taskType":"EXECUTIONS","progression":[{"event":"event1","order":1,"status":"SUCCEEDED"},{"event":"event2","order":2,"status":"SKIPPED"},{"event":"event3","order":3,"status":"RUNNING"},{"event":"event4","order":4,"status":"QUEUED"},{"event":"event5","order":5,"status":"QUEUED"}]}]
Response
application/json
{ "_pageInfo": { "numberOnPage": 0, "total": 0 }, "responseList": [ { … } ] }
- Mock serverhttps://help-api.delphix.com/_mock/continuous-compliance-engine/2025.2.0.0/cc-engine-apis-2025.2.0.0/monitor-task/{taskId}
- https://help-api.delphix.com/masking/api/v5.1.42/monitor-task/{taskId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://help-api.delphix.com/_mock/continuous-compliance-engine/2025.2.0.0/cc-engine-apis-2025.2.0.0/monitor-task/{taskId}?monitorable_task=EXECUTIONS' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{ "taskId": 123, "taskType": "EXECUTIONS", "progression": [ { … }, { … }, { … }, { … }, { … } ] }