Schema for the Continuous Compliance Engine API
Masking API (5.1.43)
- Mock serverhttps://help-api.delphix.com/_mock/continuous-compliance-engine/2025.3.0.0/cc-engine-apis-2025.3.0.0/credential-paths
- https://help-api.delphix.com/masking/api/v5.1.43/credential-paths
- 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.3.0.0/cc-engine-apis-2025.3.0.0/credential-paths?page_number=1&page_size=0' \
-H 'Authorization: YOUR_API_KEY_HERE'Success
{ "_pageInfo": { "numberOnPage": 0, "total": 0 }, "responseList": [ { … } ] }
The credential path to create
The name of the credential path.
The description of the credential path.
The ID of the password vault which contains this credential path.
- Mock serverhttps://help-api.delphix.com/_mock/continuous-compliance-engine/2025.3.0.0/cc-engine-apis-2025.3.0.0/credential-paths
- https://help-api.delphix.com/masking/api/v5.1.43/credential-paths
- 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/2025.3.0.0/cc-engine-apis-2025.3.0.0/credential-paths \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"credentialPathName": "ExampleCredentialPath",
"description": "This CredentialPath example has HashiCorp credentialParameters. Example credentialParameter keys for other password vaults: CyberArk (queryString), GCP (versionId, projectId, usernameKey, passwordKey)",
"passwordVaultId": 5,
"credentialParameters": {
"engine": "my-secrets",
"path": "hello",
"usernameKey": "user",
"passwordKey": "pwd"
}
}'Success
The ID number of the credential path. This field is auto-generated by the Masking Engine.
The name of the credential path.
The description of the credential path.
The ID of the password vault which contains this credential path.
{ "credentialPathName": "ExampleCredentialPath", "description": "This CredentialPath example has HashiCorp credentialParameters. Example credentialParameter keys for other password vaults: CyberArk (queryString), GCP (versionId, projectId, usernameKey, passwordKey)", "passwordVaultId": 5, "credentialParameters": { "engine": "my-secrets", "path": "hello", "usernameKey": "user", "passwordKey": "pwd" } }
- Mock serverhttps://help-api.delphix.com/_mock/continuous-compliance-engine/2025.3.0.0/cc-engine-apis-2025.3.0.0/credential-paths/{credentialPathId}
- https://help-api.delphix.com/masking/api/v5.1.43/credential-paths/{credentialPathId}
- 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.3.0.0/cc-engine-apis-2025.3.0.0/credential-paths/{credentialPathId}' \
-H 'Authorization: YOUR_API_KEY_HERE'Success
The ID number of the credential path. This field is auto-generated by the Masking Engine.
The name of the credential path.
The description of the credential path.
The ID of the password vault which contains this credential path.
{ "credentialPathName": "ExampleCredentialPath", "description": "This CredentialPath example has HashiCorp credentialParameters. Example credentialParameter keys for other password vaults: CyberArk (queryString), GCP (versionId, projectId, usernameKey, passwordKey)", "passwordVaultId": 5, "credentialParameters": { "engine": "my-secrets", "path": "hello", "usernameKey": "user", "passwordKey": "pwd" } }
The updated credential path
The name of the credential path.
The description of the credential path.
The ID of the password vault which contains this credential path.
- Mock serverhttps://help-api.delphix.com/_mock/continuous-compliance-engine/2025.3.0.0/cc-engine-apis-2025.3.0.0/credential-paths/{credentialPathId}
- https://help-api.delphix.com/masking/api/v5.1.43/credential-paths/{credentialPathId}
- 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.3.0.0/cc-engine-apis-2025.3.0.0/credential-paths/{credentialPathId}' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"credentialPathName": "ExampleCredentialPath",
"description": "This CredentialPath example has HashiCorp credentialParameters. Example credentialParameter keys for other password vaults: CyberArk (queryString), GCP (versionId, projectId, usernameKey, passwordKey)",
"passwordVaultId": 5,
"credentialParameters": {
"engine": "my-secrets",
"path": "hello",
"usernameKey": "user",
"passwordKey": "pwd"
}
}'Success
The ID number of the credential path. This field is auto-generated by the Masking Engine.
The name of the credential path.
The description of the credential path.
The ID of the password vault which contains this credential path.
{ "credentialPathName": "ExampleCredentialPath", "description": "This CredentialPath example has HashiCorp credentialParameters. Example credentialParameter keys for other password vaults: CyberArk (queryString), GCP (versionId, projectId, usernameKey, passwordKey)", "passwordVaultId": 5, "credentialParameters": { "engine": "my-secrets", "path": "hello", "usernameKey": "user", "passwordKey": "pwd" } }
- Mock serverhttps://help-api.delphix.com/_mock/continuous-compliance-engine/2025.3.0.0/cc-engine-apis-2025.3.0.0/credential-paths/{credentialPathId}
- https://help-api.delphix.com/masking/api/v5.1.43/credential-paths/{credentialPathId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://help-api.delphix.com/_mock/continuous-compliance-engine/2025.3.0.0/cc-engine-apis-2025.3.0.0/credential-paths/{credentialPathId}' \
-H 'Authorization: YOUR_API_KEY_HERE'