Skip to main content

Configure Cloud Storage Credentials (Azure BYOS only)

Select

SaaS
Customer Managed

This API creates the storage credentials for Azure Storage.

Request Body
  • name string required

    credential name

  • storageAccountName string required

    storage account name

  • accessKey string required

    access key

  • description string
Responses

OK


Schema
  • credential object
  • id integer

    Newly created credential ID

  • errorMessage string
  • errorCode integer
POST /v4/credentials/azure/storage    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

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