Schema for the Continuous Compliance Engine API
- Delete JDBC driver by ID
Get all JDBC drivers
Create Jdbc Driver
Get JDBC driver by ID
Update jdbc driver
Delete JDBC driver by ID
Masking API (5.1.43)
Download OpenAPI description
Languages
Servers
Mock server
https://help-api.delphix.com/_mock/continuous-compliance-engine/2025.3.0.0/cc-engine-apis-2025.3.0.0
https://help-api.delphix.com/masking/api/v5.1.43
- Mock serverhttps://help-api.delphix.com/_mock/continuous-compliance-engine/2025.3.0.0/cc-engine-apis-2025.3.0.0/jdbc-drivers
- https://help-api.delphix.com/masking/api/v5.1.43/jdbc-drivers
- 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/jdbc-drivers?is_built_in=true&page_number=1&page_size=0' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{ "_pageInfo": { "numberOnPage": 0, "total": 0 }, "responseList": [ { … } ] }
Bodyapplication/jsonrequired
The jdbc driver details.
The name of the class to use.
Example: "com.sap.db.jdbc.Driver"
The file references ID of the uploaded zip file
Example: "delphix-file://upload/f_08bb469a2ddc407bb97a31e96ed0a76a/foo.bar"
- Mock serverhttps://help-api.delphix.com/_mock/continuous-compliance-engine/2025.3.0.0/cc-engine-apis-2025.3.0.0/jdbc-drivers
- https://help-api.delphix.com/masking/api/v5.1.43/jdbc-drivers
- 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/jdbc-drivers \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"driverName": "HANA driver",
"driverClassName": "com.sap.db.jdbc.Driver",
"fileReferenceId": "delphix-file://upload/f_08bb469a2ddc407bb97a31e96ed0a76a/foo.bar"
}'Response
application/json
{ "driverName": "HANA driver", "driverClassName": "com.sap.db.jdbc.Driver", "fileReferenceId": "delphix-file://upload/f_08bb469a2ddc407bb97a31e96ed0a76a/foo.bar" }
- Mock serverhttps://help-api.delphix.com/_mock/continuous-compliance-engine/2025.3.0.0/cc-engine-apis-2025.3.0.0/jdbc-drivers/{jdbcDriverId}
- https://help-api.delphix.com/masking/api/v5.1.43/jdbc-drivers/{jdbcDriverId}
- 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/jdbc-drivers/{jdbcDriverId}' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{ "driverName": "HANA driver", "driverClassName": "com.sap.db.jdbc.Driver", "fileReferenceId": "delphix-file://upload/f_08bb469a2ddc407bb97a31e96ed0a76a/foo.bar" }
Bodyapplication/jsonrequired
The jdbc driver details.
The name of the class to use.
Example: "com.sap.db.jdbc.Driver"
The file references ID of the uploaded zip file
Example: "delphix-file://upload/f_08bb469a2ddc407bb97a31e96ed0a76a/foo.bar"
- Mock serverhttps://help-api.delphix.com/_mock/continuous-compliance-engine/2025.3.0.0/cc-engine-apis-2025.3.0.0/jdbc-drivers/{jdbcDriverId}
- https://help-api.delphix.com/masking/api/v5.1.43/jdbc-drivers/{jdbcDriverId}
- 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/jdbc-drivers/{jdbcDriverId}' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"driverName": "HANA driver",
"driverClassName": "com.sap.db.jdbc.Driver",
"fileReferenceId": "delphix-file://upload/f_08bb469a2ddc407bb97a31e96ed0a76a/foo.bar"
}'Response
application/json
{ "driverName": "HANA driver", "driverClassName": "com.sap.db.jdbc.Driver", "fileReferenceId": "delphix-file://upload/f_08bb469a2ddc407bb97a31e96ed0a76a/foo.bar" }
- Mock serverhttps://help-api.delphix.com/_mock/continuous-compliance-engine/2025.3.0.0/cc-engine-apis-2025.3.0.0/jdbc-drivers/{jdbcDriverId}
- https://help-api.delphix.com/masking/api/v5.1.43/jdbc-drivers/{jdbcDriverId}
- 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/jdbc-drivers/{jdbcDriverId}' \
-H 'Authorization: YOUR_API_KEY_HERE'