Azure Accounts - Remove From App

apps - Removes an assigned LUIS Azure account from an application
Removes assigned Azure account from the application.

DELETE {Endpoint}/luis/authoring/v3.0-preview/apps/{appId}/azureaccounts

URI Parameters

Name In Required Type Description
appId
path True

string

uuid

The application ID.

Endpoint
path True

string

Supported Cognitive Services endpoints (protocol and hostname, for example: https://westus.api.cognitive.microsoft.com).

Request Header

Name Required Type Description
Ocp-Apim-Subscription-Key True

string

Authorization True

string

The bearer authorization header to use; containing the user's ARM token used to validate Azure accounts information.

ArmToken

string

The custom arm token header to use; containing the user's ARM token used to validate azure accounts information.

Request Body

Name Required Type Description
accountName True

string

The Azure account name.

azureSubscriptionId True

string

The id for the Azure subscription.

resourceGroup True

string

The Azure resource group name.

Responses

Name Type Description
200 OK

OperationStatus

Successful operation.

Other Status Codes

ErrorResponse

Error Response.

Security

Ocp-Apim-Subscription-Key

Type: apiKey
In: header

Examples

Successful delete assigned azure account request

Sample Request

DELETE {Endpoint}/luis/authoring/v3.0-preview/apps/363187f1-c573-46b3-bc4c-ae01d686e68e/azureaccounts



{
  "azureSubscriptionId": "{azure_subscription_id}",
  "resourceGroup": "{resource_group_name}",
  "accountName": "{account_name}"
}

Sample Response

{
  "code": "Success",
  "message": "Operation Successful"
}

Definitions

Name Description
AzureAccountInfoObject

Defines the Azure account information object.

ErrorResponse

Error response when invoking an operation on the API.

OperationStatus

Response of an Operation status.

OperationStatusType

Status Code.

AzureAccountInfoObject

Defines the Azure account information object.

Name Type Description
accountName

string

The Azure account name.

azureSubscriptionId

string

The id for the Azure subscription.

resourceGroup

string

The Azure resource group name.

ErrorResponse

Error response when invoking an operation on the API.

Name Type Description
errorType

string

OperationStatus

Response of an Operation status.

Name Type Description
code

OperationStatusType

Status Code.

message

string

Status details.

OperationStatusType

Status Code.

Name Type Description
FAILED

string

Failed

string

Success

string