Microsoft.HealthBot (stable:2025-05-25)

2025/06/09 • 9 new methods

Bots_Create (new)
Description Create a new Azure Health Bot.
Reference Link ¶

⚼ Request

PUT:  /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthBot/healthBots/{botName}
{
subscriptionId: string ,
resourceGroupName: string ,
botName: string ,
parameters:
{
sku:
{
name: enum ,
}
,
identity:
{
principalId: string ,
tenantId: string ,
type: enum ,
userAssignedIdentities: object ,
}
,
properties:
{
provisioningState: string ,
botManagementPortalLink: string ,
keyVaultProperties:
{
keyName: string ,
keyVersion: string ,
keyVaultUri: string ,
userIdentity: string ,
}
,
accessControlMethod: string ,
}
,
}
,
api-version: string ,
}

⚐ Response (200)

{
sku:
{
name: enum ,
}
,
identity:
{
principalId: string ,
tenantId: string ,
type: enum ,
userAssignedIdentities: object ,
}
,
properties:
{
provisioningState: string ,
botManagementPortalLink: string ,
keyVaultProperties:
{
keyName: string ,
keyVersion: string ,
keyVaultUri: string ,
userIdentity: string ,
}
,
accessControlMethod: string ,
}
,
}

⚐ Response (201)

{
sku:
{
name: enum ,
}
,
identity:
{
principalId: string ,
tenantId: string ,
type: enum ,
userAssignedIdentities: object ,
}
,
properties:
{
provisioningState: string ,
botManagementPortalLink: string ,
keyVaultProperties:
{
keyName: string ,
keyVersion: string ,
keyVaultUri: string ,
userIdentity: string ,
}
,
accessControlMethod: string ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Bots_Get (new)
Description Get a HealthBot.
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthBot/healthBots/{botName}
{
subscriptionId: string ,
resourceGroupName: string ,
botName: string ,
api-version: string ,
}

⚐ Response (200)

{
sku:
{
name: enum ,
}
,
identity:
{
principalId: string ,
tenantId: string ,
type: enum ,
userAssignedIdentities: object ,
}
,
properties:
{
provisioningState: string ,
botManagementPortalLink: string ,
keyVaultProperties:
{
keyName: string ,
keyVersion: string ,
keyVaultUri: string ,
userIdentity: string ,
}
,
accessControlMethod: string ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Bots_Update (new)
Description Patch a HealthBot.
Reference Link ¶

⚼ Request

PATCH:  /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthBot/healthBots/{botName}
{
subscriptionId: string ,
resourceGroupName: string ,
botName: string ,
parameters:
{
properties:
{
provisioningState: string ,
botManagementPortalLink: string ,
keyVaultProperties:
{
keyName: string ,
keyVersion: string ,
keyVaultUri: string ,
userIdentity: string ,
}
,
accessControlMethod: string ,
}
,
tags: object ,
sku:
{
name: enum ,
}
,
identity:
{
principalId: string ,
tenantId: string ,
type: enum ,
userAssignedIdentities: object ,
}
,
location: string ,
}
,
api-version: string ,
}

⚐ Response (200)

{
sku:
{
name: enum ,
}
,
identity:
{
principalId: string ,
tenantId: string ,
type: enum ,
userAssignedIdentities: object ,
}
,
properties:
{
provisioningState: string ,
botManagementPortalLink: string ,
keyVaultProperties:
{
keyName: string ,
keyVersion: string ,
keyVaultUri: string ,
userIdentity: string ,
}
,
accessControlMethod: string ,
}
,
}

⚐ Response (201)

{
sku:
{
name: enum ,
}
,
identity:
{
principalId: string ,
tenantId: string ,
type: enum ,
userAssignedIdentities: object ,
}
,
properties:
{
provisioningState: string ,
botManagementPortalLink: string ,
keyVaultProperties:
{
keyName: string ,
keyVersion: string ,
keyVaultUri: string ,
userIdentity: string ,
}
,
accessControlMethod: string ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Bots_Delete (new)
Description Delete a HealthBot.
Reference Link ¶

⚼ Request

DELETE:  /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthBot/healthBots/{botName}
{
subscriptionId: string ,
resourceGroupName: string ,
botName: string ,
api-version: string ,
}

⚐ Response (200)

{}

⚐ Response (202)

{}

⚐ Response (204)

{}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Bots_ListSecrets (new)
Description List all secrets of a HealthBot.
Reference Link ¶

⚼ Request

POST:  /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthBot/healthBots/{botName}/listSecrets
{
subscriptionId: string ,
resourceGroupName: string ,
botName: string ,
api-version: string ,
}

⚐ Response (200)

{
secrets:
[
{
keyName: string ,
value: string ,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Bots_RegenerateApiJwtSecret (new)
Description Regenerate the API JWT Secret of a HealthBot.
Reference Link ¶

⚼ Request

POST:  /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthBot/healthBots/{botName}/regenerateApiJwtSecret
{
subscriptionId: string ,
resourceGroupName: string ,
botName: string ,
api-version: string ,
}

⚐ Response (200)

{
keyName: string ,
value: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Bots_ListByResourceGroup (new)
Description Returns all the resources of a particular type belonging to a resource group
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthBot/healthBots
{
resourceGroupName: string ,
subscriptionId: string ,
api-version: string ,
}

⚐ Response (200)

{
nextLink: string ,
value:
[
{
sku:
{
name: enum ,
}
,
identity:
{
principalId: string ,
tenantId: string ,
type: enum ,
userAssignedIdentities: object ,
}
,
properties:
{
provisioningState: string ,
botManagementPortalLink: string ,
keyVaultProperties:
{
keyName: string ,
keyVersion: string ,
keyVaultUri: string ,
userIdentity: string ,
}
,
accessControlMethod: string ,
}
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Bots_List (new)
Description Returns all the resources of a particular type belonging to a subscription.
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/providers/Microsoft.HealthBot/healthBots
{
subscriptionId: string ,
api-version: string ,
}

⚐ Response (200)

{
nextLink: string ,
value:
[
{
sku:
{
name: enum ,
}
,
identity:
{
principalId: string ,
tenantId: string ,
type: enum ,
userAssignedIdentities: object ,
}
,
properties:
{
provisioningState: string ,
botManagementPortalLink: string ,
keyVaultProperties:
{
keyName: string ,
keyVersion: string ,
keyVaultUri: string ,
userIdentity: string ,
}
,
accessControlMethod: string ,
}
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Operations_List (new)
Description Lists all the available Azure Health Bot operations.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.HealthBot/operations
{
api-version: string ,
}

⚐ Response (200)

{
value:
[
{
name: string ,
isDataAction: boolean ,
display:
{
provider: string ,
resource: string ,
operation: string ,
description: string ,
}
,
origin: string ,
properties: object ,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}