Schema for the Continuous Compliance Engine API
- Update Inventory Approval by ID
Get Inventory Approval by environment ID and Ruleset Name.
Update Inventory Approval...
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
- Mock serverhttps://help-api.delphix.com/_mock/continuous-compliance-engine/2026.1.0.0/cc-engine-apis-2026.1.0.0/inventory-approvals
- https://help-api.delphix.com/masking/api/v5.1.47/inventory-approvals
- 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/2026.1.0.0/cc-engine-apis-2026.1.0.0/inventory-approvals?environment_id=0&ruleset_name=string' \
-H 'Authorization: YOUR_API_KEY_HERE'Success
The ID of the Inventory Approval. This field will be generated by the Masking Engine.
Example: 1
The name for this Ruleset inventory to be updated.
Example: "DelimitedFileRs"
The inventory status of this Environment's inventory.
Enum"NEW""SUBMITTED""APPROVED""REJECTED"
Example: "SUBMITTED"
The login name of the user submitting the ruleset inventory to be approved.
Response
application/json
{ "inventoryApprovalId": 1, "environmentId": 1, "rulesetName": "DelimitedFileRs", "inventoryStatus": "SUBMITTED" }
- Mock serverhttps://help-api.delphix.com/_mock/continuous-compliance-engine/2026.1.0.0/cc-engine-apis-2026.1.0.0/inventory-approvals/{inventoryApprovalId}
- https://help-api.delphix.com/masking/api/v5.1.47/inventory-approvals/{inventoryApprovalId}
- 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/inventory-approvals/{inventoryApprovalId}?inventoryStatus=SUBMITTED' \
-H 'Authorization: YOUR_API_KEY_HERE'Success
The ID of the Inventory Approval. This field will be generated by the Masking Engine.
Example: 1
The name for this Ruleset inventory to be updated.
Example: "DelimitedFileRs"
The inventory status of this Environment's inventory.
Enum"NEW""SUBMITTED""APPROVED""REJECTED"
Example: "SUBMITTED"
The login name of the user submitting the ruleset inventory to be approved.
Response
application/json
{ "inventoryApprovalId": 1, "environmentId": 1, "rulesetName": "DelimitedFileRs", "inventoryStatus": "SUBMITTED" }