Skip to main content
GET
/
:projectId
/
api
/
v7
/
conversations
/
:conversationId
/
messages
/
:messageId
Fetch Message
curl --request GET \
  --url https://api.replyke.com/api/v6/:projectId/api/v7/conversations/:conversationId/messages/:messageId
Returns a single ChatMessage by ID, fully populated with user, quotedMessage, files, reactionCounts, and userReactions. The caller must be a member of the conversation.

Path Parameters

conversationId
string
required
The ID of the conversation.
messageId
string
required
The ID of the message to fetch.

Response

Returns a ChatMessage with all populated fields including reactionCounts and userReactions for the requesting user.

Error Responses

{ "error": "You are not a member of this conversation.", "code": "chat/not-a-member" }
{ "error": "Message not found.", "code": "chat/message-not-found" }