Skip to main content

Configure Azure Credentials

Select

SaaS
Customer Managed

This API creates the storage credentials for cloud account.

Request Body
  • name string

    credential name

  • tenantId string

    storage tenant id

  • applicationId string

    application id

  • applicationSecret string

    application secret

  • description string

    description of the credential

Responses

OK


Schema
  • credential object
  • id integer
  • errorMessage string
  • errorCode integer
POST /v4/credentials/azure/cloudaccount    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"name": "string",
"tenantId": "string",
"applicationId": "string",
"applicationSecret": "string",
"description": "string"
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/V4/credentials/azure/cloudAccount' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"name": "string",
"tenantId": "string",
"applicationId": "string",
"applicationSecret": "string",
"description": "string"
}'