Skip to main content

Create Node for Hyper ScaleStorage

Select

SaaS
Customer Managed

Add nodes for a specific hyperscale storage

Path Parameters
  • hyperScaleStorageId int32 required

    Id of hyperscale storage

Request Body
  • nodes object[]

    List of Nodes (MediaAgents) one want to add to the specified HyperScale Storage

  • id int32
  • name string
Responses

Success


Schema
  • errorMessage string
  • errorCode int32
POST /v4/storage/hyperscale/:hyperscalestorageid/nodes    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
hyperScaleStorageId — path required
Body
{
"nodes": [
{
"id": 0,
"name": "string"
}
]
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/V4/Storage/HyperScale/:hyperScaleStorageId/Nodes' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"nodes": [
{
"id": 0,
"name": "string"
}
]
}'