Azure Accounts - Get Assigned

apps - Get LUIS Azure accounts assigned to the application
Gets the LUIS Azure accounts assigned to the application for the user using his ARM token.

GET {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.

Responses

Name Type Description
200 OK

AzureAccountInfoObject[]

A list of azure account information objects.

Other Status Codes

ErrorResponse

Error Response.

Security

Ocp-Apim-Subscription-Key

Type: apiKey
In: header

Examples

Successful Get assigned azure accounts request

Sample Request

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


Sample Response

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

Definitions

Name Description
AzureAccountInfoObject

Defines the Azure account information object.

ErrorResponse

Error response when invoking an operation on the API.

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