Skip to main content

Create

Create Azure Cloud Connection

Path Parameters
  • accountId int64 required
  • projectId string required
Request Body required
  • armTemplateId string
  • azureTenantId string
  • subscriptionId string
  • name string
  • description string
  • operationalRegions string[]
  • clientId string
  • clientSecret string
Responses

OK


Schema
  • name string
  • description string
  • cloudConnectionId int64
  • createdAt date-time
POST /api/v1/account/:accountid/project/:projectid/cloud-connection/azure    

Authorization

Request

Click Edit to configure Base URL
https://api.appranix.net
Bearer Token
accountId — path required
projectId — path required
Body required
{
"armTemplateId": "string",
"azureTenantId": "string",
"subscriptionId": "string",
"name": "string",
"description": "string",
"operationalRegions": [
"string"
],
"clientId": "string",
"clientSecret": "string"
}
curl -L -X POST 'https://api.appranix.net/api/v1/account/:accountId/project/:projectId/cloud-connection/azure' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"armTemplateId": "string",
"azureTenantId": "string",
"subscriptionId": "string",
"name": "string",
"description": "string",
"operationalRegions": [
"string"
],
"clientId": "string",
"clientSecret": "string"
}'