Skip to main content
POST
/
bridge
/
api
/
v1
/
workspaces
/
{workspaceId}
/
conversations
Creates a new conversation with flexible user identification.
curl --request POST \
  --url https://api-connect-us.bridge.new/bridge/api/v1/workspaces/{workspaceId}/conversations \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '
{
  "participants": {
    "externals": [
      {
        "identifier": "<string>",
        "identifierType": "ID",
        "messageProviderType": "WHATSAPP",
        "providerChannelId": "<string>"
      }
    ],
    "internals": [
      {
        "identifier": "<string>",
        "identifierType": "ID"
      }
    ]
  },
  "name": "b6cf1c4a-2b1e-4e63-8f3e-0f9d1a2a1234",
  "status": "ACTIVE",
  "teamId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'
{
  "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).

Body

application/json
participants
object
required

Participants to add to conversation

name
string | null

Optional name/title for the conversation

Example:

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

status
enum<string>
default:ACTIVE

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

Available options:
ACTIVE,
GHOST
Example:

"ACTIVE"

teamId
string<uuid> | null

Team UUID for round-robin assignment (optional, mutually exclusive with internalParticipants)

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"