Schema for the Continuous Compliance Engine API
Masking API (5.1.45)
Download OpenAPI description
Languages
Servers
Mock server
https://help-api.delphix.com/_mock/continuous-compliance-engine/2025.5.0.0/cc-engine-apis-2025.5.0.0
https://help-api.delphix.com/masking/api/v5.1.45
Query
The operation type for which to get async tasks.
Enum"ALGORITHM_CREATE""ALGORITHM_MIGRATE""ALGORITHM_UPDATE""EXPORT""IMPORT""RULESET_REFRESH""SUPPORT_BUNDLE_GENERATE""TABLE_BULK_UPDATE"
The status type for which to get async tasks.
Enum"CANCELLED""FAILED""RUNNING""SUCCEEDED""WAITING"
The page number for which to get asyncTasks. This will default to the first page if excluded
Default 1
- Mock serverhttps://help-api.delphix.com/_mock/continuous-compliance-engine/2025.5.0.0/cc-engine-apis-2025.5.0.0/async-tasks
- https://help-api.delphix.com/masking/api/v5.1.45/async-tasks
- 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.5.0.0/cc-engine-apis-2025.5.0.0/async-tasks?operation=ALGORITHM_CREATE&status=CANCELLED&page_number=1&page_size=0' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{ "_pageInfo": { "numberOnPage": 0, "total": 0 }, "responseList": [ { … } ] }
- Mock serverhttps://help-api.delphix.com/_mock/continuous-compliance-engine/2025.5.0.0/cc-engine-apis-2025.5.0.0/async-tasks/{asyncTaskId}
- https://help-api.delphix.com/masking/api/v5.1.45/async-tasks/{asyncTaskId}
- 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.5.0.0/cc-engine-apis-2025.5.0.0/async-tasks/{asyncTaskId}' \
-H 'Authorization: YOUR_API_KEY_HERE'Success
The ID of the AsyncTask. This field will be generated by the Masking Engine.
Example: 1
The type of operation that the AsyncTask is performing.
Enum"ADD_MAPPINGS""ALGORITHM_CREATE""ALGORITHM_MIGRATE""ALGORITHM_UPDATE""DATAFILE_BULK_UPDATE""ENCRYPTION_KEY_CREATE""EXPORT""EXPORT_CLASSIFIER_FILES""EXPORT_MAPPINGS""EXPORT_PROFILE_SET"
Example: "RULESET_REFRESH"
The reference for the AsyncTask. An example of a reference is the ruleset ID for a RULESET_REFRESH operation.
Example: 13
The status of the AsyncTask in regard to its completion.
Enum"CANCELLED""FAILED""RUNNING""SUCCEEDED""WAITING"
Example: "RUNNING"
Response
application/json
{ "asyncTaskId": 1, "operation": "RULESET_REFRESH", "reference": 13, "status": "RUNNING", "cancellable": false }
- Mock serverhttps://help-api.delphix.com/_mock/continuous-compliance-engine/2025.5.0.0/cc-engine-apis-2025.5.0.0/async-tasks/{asyncTaskId}/cancel
- https://help-api.delphix.com/masking/api/v5.1.45/async-tasks/{asyncTaskId}/cancel
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://help-api.delphix.com/_mock/continuous-compliance-engine/2025.5.0.0/cc-engine-apis-2025.5.0.0/async-tasks/{asyncTaskId}/cancel' \
-H 'Authorization: YOUR_API_KEY_HERE'