inventoryApproval

Get Inventory Approval by environment ID and Ruleset Name.

Securityapi_key
Request
query Parameters
environment_id
required
integer <int32>

The ID of the Environment.

ruleset_name
required
string <= 500 characters

The name of the rule-set that has inventory approval record.

Responses
200

Success

403

Forbidden access

404

Not found

get/inventory-approvals
Response samples
application/json
{
  • "inventoryApprovalId": 1,
  • "environmentId": 1,
  • "rulesetName": "DelimitedFileRs",
  • "inventoryStatus": "SUBMITTED"
}

Update Inventory Approval by ID

Securityapi_key
Request
path Parameters
inventoryApprovalId
required
integer <int32>

The ID of the inventory approval to update

query Parameters
inventoryStatus
required
string

The inventory status of the inventory approval to update

Enum: "SUBMITTED" "APPROVED" "REJECTED"
Responses
200

Success

400

Bad request

403

Forbidden access

404

Not found

put/inventory-approvals/{inventoryApprovalId}
Response samples
application/json
{
  • "inventoryApprovalId": 1,
  • "environmentId": 1,
  • "rulesetName": "DelimitedFileRs",
  • "inventoryStatus": "SUBMITTED"
}