List Chats
Retrieve all the saved Chats between Glean Assistant and the user. The returned Chats contain only metadata and no conversational content.
Note, this action belongs to Glean Chat API
, therefore requires using either the Global Client Token
or the User Client Token
connection methods.
External Documentation
To learn more, visit the Glean documentation.
Parameters
Parameter | Description |
---|---|
Timezone Offset | The offset of the client's timezone in minutes from UTC. For example, PTD is -420 because it's 7 hours behind UTC . |
Example Output
{
"chatResults": [
{
"chat": {
"id": "string",
"createTime": 0,
"createdBy": {
"name": "George Clooney",
"obfuscatedId": "abc123"
},
"updateTime": 0,
"name": "string",
"applicationId": "string"
},
"trackingToken": "string"
}
]
}
Workflow Library Example
List Chats with Glean and Send Results Via Email
Preview this Workflow on desktop