Read Messages
Fetch the full message thread for a specific conversation.
Get messages in a conversation
GET
/v1/conversations/:id/messagesRequest
curl https://api.repull.dev/v1/conversations/123/messages \ -H "Authorization: Bearer sk_test_YOUR_KEY" \ -H "X-Workspace-Id: YOUR_WORKSPACE_ID"
Response
{
"data": {
"id": "100",
"reservationId": "456",
"messages": [
{ "id": "1", "senderType": "GUEST", "message": "Hi! What are the check-in instructions?", "createdAt": "..." },
{ "id": "2", "senderType": "HOST", "message": "Welcome! Check-in is at 3 PM...", "createdAt": "..." }
]
}
}AI