Skip to main content

Remove Asset From Inventory

Select

Customer Managed

This operation removes an asset from the Inventory.

Path Parameters
  • inventoryId string required
Request Body
  • inventoryId integer
  • assets object[]
  • assetId integer
Responses

OK


Schema
  • errorResp object
PUT /ediscoveryclients/inventories/:inventoryid/assets    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
inventoryId — path required
Body

{
"inventoryId": 0,
"assets": [
{
"assetId": 0
}
]
}
curl -L -X PUT 'https://CommandCenterHostName/commandcenter/api/EDiscoveryClients/Inventories/:inventoryId/Assets' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"inventoryId": 0,
"assets": [
{
"assetId": 0
}
]
}'