Skip to main content

chat_transcripts

Creates, updates, deletes, gets or lists a chat_transcripts resource.

Overview

Namechat_transcripts
TypeResource
Idazure.support.chat_transcripts

Fields

The following fields are returned by SELECT queries:

Successfully retrieved chat transcript details for a subscription ticket.

NameDatatypeDescription
propertiesobjectProperties of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsupportTicketName, chatTranscriptName, subscriptionIdReturns chatTranscript details for a support ticket under a subscription.
listselectsupportTicketName, subscriptionIdLists all chat transcripts for a support ticket under subscription

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
chatTranscriptNamestringChatTranscript name.
subscriptionIdstringAzure subscription Id.
supportTicketNamestringSupport ticket name.

SELECT examples

Returns chatTranscript details for a support ticket under a subscription.

SELECT
properties
FROM azure.support.chat_transcripts
WHERE supportTicketName = '{{ supportTicketName }}' -- required
AND chatTranscriptName = '{{ chatTranscriptName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;