Skip to main content
GET
/
:projectId
/
api
/
v7
/
conversations
/
:conversationId
Fetch Conversation
curl --request GET \
  --url https://api.replyke.com/api/v6/:projectId/api/v7/conversations/:conversationId
{
  "currentMember": {},
  "memberCount": 123
}
Returns a Conversation object with the caller’s membership row and active member count included.

Path Parameters

conversationId
string
required
The ID of the conversation to fetch.

Response

Returns a Conversation with two additional fields:
currentMember
ConversationMember | null
The calling user’s membership row for this conversation. null if the user has no membership record.
memberCount
number
Number of currently active members.

Error Responses

{ "error": "Conversation not found.", "code": "chat/not-found" }