Skip to main content

Create Inventory

This operation creates a new Inventory.

Header Parameters
  • Accept string required
Request Body
  • inventoryName string
  • analyticsEngineCloud object
  • cloudId integer
  • cloudDisplayName string
Responses

OK


Schema
  • inventoryList object[]
  • inventoryName string
  • inventoryId integer
  • errorResp object
POST /ediscoveryclients/inventories    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"inventoryName": "string",
"analyticsEngineCloud": {
"cloudId": 0,
"cloudDisplayName": "string"
}
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/EDiscoveryClients/Inventories' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"inventoryName": "string",
"analyticsEngineCloud": {
"cloudId": 0,
"cloudDisplayName": "string"
}
}'