PUT
/
v1
/
chat
/
conversations
/
{id}
curl --request PUT \
  --url https://api.botpress.cloud/v1/chat/conversations/{id} \
  --header 'Content-Type: application/json' \
  --data '{
  "currentTaskId": "<string>",
  "tags": {}
}'
{
  "conversation": {
    "id": "<string>",
    "currentTaskId": "<string>",
    "currentWorkflowId": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "channel": "<string>",
    "integration": "<string>",
    "tags": {}
  }
}

Path Parameters

id
string
required

Conversation id

Body

application/json
Conversation data
currentTaskId
string
tags
object

Tags for the Conversation

Response

200
application/json
Returns an updated [Conversation](#schema_conversation) object if a valid identifier was provided. Returns [an error](#errors) otherwise
conversation
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.