Skip to main content
PATCH
/
bridge
/
api
/
v1
/
workspaces
/
{workspaceId}
/
conversations
/
{conversationId}
Update conversation
curl --request PATCH \
  --url https://api-connect-us.bridge.new/bridge/api/v1/workspaces/{workspaceId}/conversations/{conversationId} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '
{
  "name": "<string>",
  "status": "ACTIVE",
  "participants": {
    "externals": {
      "add": [
        {
          "identifier": "<string>",
          "identifierType": "ID",
          "messageProviderType": "WHATSAPP",
          "providerChannelId": "<string>"
        }
      ],
      "remove": [
        {
          "identifier": "<string>",
          "identifierType": "ID",
          "messageProviderType": "WHATSAPP",
          "providerChannelId": "<string>"
        }
      ]
    },
    "internals": {
      "add": [
        {
          "identifier": "<string>",
          "identifierType": "ID"
        }
      ],
      "remove": [
        {
          "identifier": "<string>",
          "identifierType": "ID"
        }
      ]
    }
  }
}
'
{
  "id": "b6cf1c4a-2b1e-4e63-8f3e-0f9d1a2a1234",
  "workspaceId": "b6cf1c4a-2b1e-4e63-8f3e-0f9d1a2a1234",
  "participants": {
    "externals": [
      {
        "identifier": "<string>",
        "identifierType": "ID",
        "role": "INTERNAL",
        "joinedAt": "2025-09-19T18:25:43Z",
        "lastSeenAt": "2025-09-19T18:25:43Z"
      }
    ],
    "internals": [
      {
        "identifier": "<string>",
        "identifierType": "ID",
        "role": "INTERNAL",
        "joinedAt": "2025-09-19T18:25:43Z",
        "lastSeenAt": "2025-09-19T18:25:43Z"
      }
    ]
  },
  "createdAt": "2025-09-19T18:25:43Z",
  "updatedAt": "2025-09-19T18:25:43Z",
  "name": "b6cf1c4a-2b1e-4e63-8f3e-0f9d1a2a1234",
  "status": "ACTIVE"
}

Headers

x-api-key
string
required

Copy the API key as provided by the Bridge Console.

Path Parameters

workspaceId
string<uuid>
required

Unique identifier of the workspace (UUID v4).

conversationId
string<uuid>
required

Unique identifier of the conversation (UUID v4).

Body

application/json
name
string | null

Optional name/title for the conversation

status
enum<string>

Initial conversation status - 'active' for visible conversations, 'ghost' for invisible until first interaction

Available options:
ACTIVE,
GHOST
Example:

"ACTIVE"

participants
ParticipantOperationsRequest · object

Participants operations to add and remove from a conversation

Response

Successful Response

id
string
required

Unique identifier of the conversation (UUID v4).

Example:

"b6cf1c4a-2b1e-4e63-8f3e-0f9d1a2a1234"

workspaceId
string
required

Unique identifier of the workspace (UUID v4).

Example:

"b6cf1c4a-2b1e-4e63-8f3e-0f9d1a2a1234"

participants
Participants structure · object
required

Participants of the conversation.

createdAt
string<date-time>
required

Timestamp when the conversation was created

Example:

"2025-09-19T18:25:43Z"

updatedAt
string<date-time>
required

Timestamp when the conversation was last updated

Example:

"2025-09-19T18:25:43Z"

name
string | null

Optional name/title for the conversation

Example:

"b6cf1c4a-2b1e-4e63-8f3e-0f9d1a2a1234"

status
enum<string> | null

Current conversation status - 'ACTIVE' for visible conversations, 'GHOST' for invisible until first interaction

Available options:
ACTIVE,
GHOST
Example:

"ACTIVE"