---
sourceDocument: Xanadu API Reference
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/xanadu/api-reference

 Release :

    - xanadu

ft:locale :

    - en-US

ft:publication_title :

    - Xanadu API Reference

ft:clusterId :

    - crapiref

bundleId :

    - crapiref

workflow :

    - Creator


---

# GlideConversation - Global

# GlideConversation - Global {#ariaid-title1}

* Release version: Xanadu
* 
* Updated August 1, 2024
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 2 minutes to read

The GlideConversation API provides methods to access information in a Connect message.  
Important:  
Starting with the Paris release, Connect Support no longer receives enhancements or
non-priority bug fixes. Consider moving to ServiceNow®
Advanced Work Assignment and Agent Chat in workspace to automatically
assign chat requests and other work items to agents. For details, see [Move from Connect Support to Advanced Work
Assignment and Agent Chat](https://www.servicenow.com/docs/access?context=migrate-from-connect-support&version=xanadu&pubname=xanadu-servicenow-platform&ft:locale=en-US).

Access GlideConversation properties through a global object (conversation) that is available only in Connect action conditions and scripts.

Connect conversations are stored on the Live Group Profile \[live_group_profile\] table.

## GlideConversation - description {#ariaid-title2}

The conversation's description.
{#r_CONV-description__table_g15_2jw_cv__entry__3}

| Name | Type | Description |
|-|-|-|
| description | String | The conversation's description. |
[Table 1. Field]

{#r_CONV-description__table_g15_2jw_cv}  

    var c= conversation.description;

## GlideConversation - document {#ariaid-title3}

The sysID of the document associated with the conversation.
This field is set for feed conversations, and contains the sysID of the record being
discussed.
{#r_CONV-document__table_ilx_gmw_cv__entry__3}

| Name | Type | Description |
|-|-|-|
| document | GlideRecord | The document associated with the conversation. |
[Table 2. Field]

{#r_CONV-document__table_ilx_gmw_cv}

## GlideConversation - name {#ariaid-title4}

The name of the conversation.
{#r_CONV-name__table_uyh_qjw_cv__entry__3}

| Name | Type | Description |
|-|-|-|
| name | String | The name of the conversation. |
[Table 3. Field]

{#r_CONV-name__table_uyh_qjw_cv}  

    var c= conversation.name;

## GlideConversation - queueEntry {#ariaid-title5}

The queue entry associated with the conversation.
The queue entry is a reference field pointing to the chat_queue_entry table. This field is
only available on support conversations. The queue chat entry is used to track the state of
the conversation. This property is not changed if an incident record is created from the
support conversation using the newRecord() method.
{#r_CONV-queueEntry__table_jyc_tmw_cv__entry__3}

| Name | Type | Description |
|-|-|-|
| queueEntry | GlideRecord | The queue entry associated with the conversation. |
[Table 4. Field]

{#r_CONV-queueEntry__table_jyc_tmw_cv}  

    var c= conversation.queueEntry;

## GlideConversation - sys_id {#ariaid-title6}

The sys_id of the conversation.
{#r_CONV-sys_id__table_u3s_nhw_cv__entry__3}

| Name | Type | Description |
|-|-|-|
| sys_id | String | The sys_id of the conversation. |
[Table 5. Field]

{#r_CONV-sys_id__table_u3s_nhw_cv}  

    var c= conversation.sys_id;

## GlideConversation - table {#ariaid-title7}

The name of the table containing the record being discussed.
This field is set for feed conversations, and is set to the table holding the record.
{#r_CONV-table__table_mcd_zjw_cv__entry__3}

| Name | Type | Description |
|-|-|-|
| table | String | The name of the table holding the record being discussed. |
[Table 6. Field]

{#r_CONV-table__table_mcd_zjw_cv}  

    var c= conversation.table;

## GlideConversation - type {#ariaid-title8}

The conversation type.
This is not the message type.  
Connect supports the following types.

* peer - direct conversations, which consist of messages between two users.
* connect - group conversations, which consist of messages between more than two users.
* support - Connect Support conversations.
* feed - record conversations, which consist of messages that correspond to comments and work notes on a specific record.
{#r_CONV-type__ul_bpy_v3f_gv}
{#r_CONV-type__table_eqp_pgw_cv__entry__3}

| Name | Type | Description |
|-|-|-|
| type | String | The conversation type. |
[Table 7. Field]

{#r_CONV-type__table_eqp_pgw_cv}  

    var c= conversation.type;


