Skip to main content

Create Hyper-V Virtualization Client (Deprecated)

Select

SaaS
Customer Managed

deprecated

This endpoint has been deprecated and may be removed in future versions of the API.

This operation creates a virtualization client.

More Details

Request Body
  • clientInfo object
  • clientType integer
  • virtualServerClientProperties object
  • virtualServerInstanceInfo object
  • vsInstanceType integer
  • associatedClients object
  • memberServers object[]
  • client object
  • clientName string
  • _type_ integer
  • vmwareVendor object
  • vcenterHostName string
  • virtualCenter object
  • password string
  • userName string
  • entity object
  • clientName string
Responses

OK

POST /client    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"clientInfo": {
"clientType": 0,
"virtualServerClientProperties": {
"virtualServerInstanceInfo": {
"vsInstanceType": 0,
"associatedClients": {
"memberServers": [
{
"client": {
"clientName": "string",
"_type_": 0
}
}
]
},
"vmwareVendor": {
"vcenterHostName": "string",
"virtualCenter": {
"password": "string",
"userName": "string"
}
}
}
}
},
"entity": {
"clientName": "string"
}
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/Client' \
-H 'Content-Type: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"clientInfo": {
"clientType": 0,
"virtualServerClientProperties": {
"virtualServerInstanceInfo": {
"vsInstanceType": 0,
"associatedClients": {
"memberServers": [
{
"client": {
"clientName": "string",
"_type_": 0
}
}
]
},
"vmwareVendor": {
"vcenterHostName": "string",
"virtualCenter": {
"password": "string",
"userName": "string"
}
}
}
}
},
"entity": {
"clientName": "string"
}
}'