vw_chat_transcripts
Creates, updates, deletes, gets or lists a vw_chat_transcripts
resource.
Overview
Name | vw_chat_transcripts |
Type | View |
Id | azure.support.vw_chat_transcripts |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.messages') as "messages",
JSON_EXTRACT(properties, '$.startTime') as "start_time",
subscriptionId,
supportTicketName,
chatTranscriptName
FROM azure.support.chat_transcripts
WHERE subscriptionId = 'replace-me' AND supportTicketName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.messages') as "messages",
json_extract_path_text(properties, '$.startTime') as "start_time",
subscriptionId,
supportTicketName,
chatTranscriptName
FROM azure.support.chat_transcripts
WHERE subscriptionId = 'replace-me' AND supportTicketName = 'replace-me';