Skip to main content

Configure Azure SQL/SQL Managed Authentication

Select

SaaS
Customer Managed

This API creates Azure DB MSSQL Credentials.

Request Body
  • name string required

    credential name

  • userAccount string required

    user account

  • password string required

    user password

  • description string

    description

Responses

OK


Schema
  • credential object
  • id integer
  • errorMessage string
  • errorCode integer
POST /v4/azuredb/mssql/credentials    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

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