Skip to main content
GET
/
bridge
/
api
/
v1
/
workspaces
/
{workspaceId}
/
conversations
/
{conversationId}
Get conversation by id
curl --request GET \
  --url https://api-connect-us.bridge.new/bridge/api/v1/workspaces/{workspaceId}/conversations/{conversationId} \
  --header 'x-api-key: <x-api-key>'
{
"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).

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"