chat_transcripts
Creates, updates, deletes, gets or lists a chat_transcripts resource.
Overview
| Name | chat_transcripts |
| Type | Resource |
| Id | azure.support.chat_transcripts |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". # pylint: disable=line-too-long |
name | string | The name of the resource. |
messages | array | List of chat transcript communication resources. |
startTime | string (date-time) | Time in UTC (ISO 8601 format) when the chat began. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". # pylint: disable=line-too-long |
name | string | The name of the resource. |
messages | array | List of chat transcript communication resources. |
startTime | string (date-time) | Time in UTC (ISO 8601 format) when the chat began. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | support_ticket_name, chat_transcript_name, subscription_id | Returns chatTranscript details for a support ticket under a subscription. | |
list | select | support_ticket_name, subscription_id | Lists 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.
| Name | Datatype | Description |
|---|---|---|
chat_transcript_name | string | ChatTranscript name. Required. |
subscription_id | string | |
support_ticket_name | string | Support ticket name. Required. |
SELECT examples
- get
- list
Returns chatTranscript details for a support ticket under a subscription.
SELECT
id,
name,
messages,
startTime,
systemData,
type
FROM azure.support.chat_transcripts
WHERE support_ticket_name = '{{ support_ticket_name }}' -- required
AND chat_transcript_name = '{{ chat_transcript_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
Lists all chat transcripts for a support ticket under subscription.
SELECT
id,
name,
messages,
startTime,
systemData,
type
FROM azure.support.chat_transcripts
WHERE support_ticket_name = '{{ support_ticket_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;