Schema for the Continuous Compliance Engine API
- Log in to the Masking Engine with an OAuth2 access token from Data Control Tower.
Log in to the Masking Engine
Log in to the Masking Engine with an OAuth2 access token from a customer's Authorization Server.
Log out of the Masking Engine
Log in to the Masking Eng...
Masking API (5.1.47)
Download OpenAPI description
Languages
Servers
Mock server
https://help-api.delphix.com/_mock/continuous-compliance-engine/2026.1.0.0/cc-engine-apis-2026.1.0.0
https://help-api.delphix.com/masking/api/v5.1.47
Bodyapplication/jsonrequired
The login object
The username for logging into the Masking Engine.
Example: "maskinguser"
- Mock serverhttps://help-api.delphix.com/_mock/continuous-compliance-engine/2026.1.0.0/cc-engine-apis-2026.1.0.0/login
- https://help-api.delphix.com/masking/api/v5.1.47/login
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://help-api.delphix.com/_mock/continuous-compliance-engine/2026.1.0.0/cc-engine-apis-2026.1.0.0/login \
-H 'Content-Type: application/json' \
-d '{
"username": "maskinguser",
"password": "secret123"
}'Response
application/json
{ "Authorization": "415aac5d-SOME-RANDOM-STRING-af6cf70dc49e" }
- Mock serverhttps://help-api.delphix.com/_mock/continuous-compliance-engine/2026.1.0.0/cc-engine-apis-2026.1.0.0/sso-login
- https://help-api.delphix.com/masking/api/v5.1.47/sso-login
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://help-api.delphix.com/_mock/continuous-compliance-engine/2026.1.0.0/cc-engine-apis-2026.1.0.0/sso-loginResponse
application/json
{ "Authorization": "415aac5d-SOME-RANDOM-STRING-af6cf70dc49e" }
- Mock serverhttps://help-api.delphix.com/_mock/continuous-compliance-engine/2026.1.0.0/cc-engine-apis-2026.1.0.0/oauth2-login
- https://help-api.delphix.com/masking/api/v5.1.47/oauth2-login
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://help-api.delphix.com/_mock/continuous-compliance-engine/2026.1.0.0/cc-engine-apis-2026.1.0.0/oauth2-loginResponse
application/json
{ "Authorization": "415aac5d-SOME-RANDOM-STRING-af6cf70dc49e" }
- Mock serverhttps://help-api.delphix.com/_mock/continuous-compliance-engine/2026.1.0.0/cc-engine-apis-2026.1.0.0/logout
- https://help-api.delphix.com/masking/api/v5.1.47/logout
- 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/2026.1.0.0/cc-engine-apis-2026.1.0.0/logout \
-H 'Authorization: YOUR_API_KEY_HERE'