GET
/
v1
/
chat
/
conversations
curl --request GET \
  --url https://api.botpress.cloud/v1/chat/conversations
{
  "conversations": [
    {
      "id": "<string>",
      "currentTaskId": "<string>",
      "currentWorkflowId": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "channel": "<string>",
      "integration": "<string>",
      "tags": {}
    }
  ],
  "meta": {
    "nextToken": "<string>"
  }
}

Query Parameters

nextToken
string

Provide the meta.nextToken value provided in the last API response to retrieve the next page of results

sortField
enum<string>

Sort results by this field

Available options:
createdAt,
updatedAt
sortDirection
enum<string>

Sort results in this direction

Available options:
asc,
desc
tags
object

Filter by tags

participantIds
string[]

Filter by participant ids

integrationName
string

Filter by integration name

channel
string

Filter by integration channel name

Response

200
application/json
Returns a list of [Conversation](#schema_conversation) objects
conversations
object[]
required

The Conversation object represents an exchange of messages between one or more users. A Conversation is always linked to an integration's channels. For example, a Slack channel represents a conversation.

meta
object
required