Skip to main content

Create Object Storage Cloud Account

Select

SaaS

This API creates a cloud account to host instance groups.

Request Body

  • name string required

    Name of the cloud account

  • subscriptionId string required

    Azure Subscription ID

  • credential object required
  • id integer
  • name string
Responses

OK


Schema
  • id integer
  • name string
POST /v4/azureobj/cloudaccount    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"name": "string",
"subscriptionId": "string",
"region": {
"id": 0,
"name": "string"
},
"credential": {
"id": 0,
"name": "string"
}
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/V4/azureobj/cloudaccount' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"name": "string",
"subscriptionId": "string",
"region": {
"id": 0,
"name": "string"
},
"credential": {
"id": 0,
"name": "string"
}
}'