Skip to main content

Get All Conversations with reservationId

Get all conversations for a given reservation.

HTTP Request​

GET https://dev.calry.app/api/v2/vrs/conversations/reservation/{reservationId}

Headers​

HeaderValue
AuthorizationBearer YOUR_ACCESS_TOKEN
workspaceIdYOUR_WORKSPACE_ID
integrationAccountIdYOUR_INTEGRATION_ACCOUNT_ID

Query Parameters​

ParameterTypeDescription
realtimeboolIf true, the response will be streamed in real-time.
curl --location 'https://dev.calry.app/api/v2/vrs/conversations/reservation/11039822' \
--header 'Authorization: Bearer eyJraWQiOiJzLThkOTQwNzI5LWYxZmItNDFhMS1hMjIzLTg5ZWY3NmZjZDIyOCIsInR5cCI6IkpXVCIsImFsZyI6IlJTMjU2In0.eyJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjMwMDAvYXV0aCIsInVzZXJJZCI6IjY5YTYwNzVlLTViYTktNDA0NS05ZDZmLWY5YTJhZjAxOWVmNyIsIndvcmtzcGFjZUlkIjoiNGNjNTA5YjAtZDhmOC00YTU3LTlkNDgtNDQ0MThmYTUxNjBmIiwibmFtZSI6InRlc3QtdG9rZW4iLCJzb3VyY2UiOiJtaWNyb3NlcnZpY2UiLCJpYXQiOjE3MDIzMTQyMjAsImV4cCI6MTczODMxNDIyMH0.f0zNaSpDqFn4A8f2vUDdra11GxTv_9PhR7rdJprP5tVGw-qpp3m4LHCTtNFUSRg6gsrXm7XOHrNGZVOTOLmWl2f6S6TdMsACWvEV3lZp48bBGlluTWbPq2469sWAljF9bOlxpqDgbigHHb4bGNPqPOKh_xaSl-jJcBUMJqMnP7xdpEGjOW5dVDf7SxTlASA-GYoCiJy4AQ5F_7YtsL62Akl7l-BIjyrQZ6TtLBjUKkOiUpfVRDjgSaGWekiTL9t6cm0sZDhhoLXt3RM_lagjid9fEQLDk77zS6_ToJpaxqSQsNlZTd0lugM-wSQIrzwaaIR2KA_QyT5WiZPIO_VnQQ' \
--header 'workspaceId: 4cc509b0-d8f8-4a57-9d48-44418fa5160f' \
--header 'integrationAccountId: 36ccdccc-9314-4812-95be-7bfaa799ffbc'

Example Response​

{
"success": true,
"data": [
{
"id": "25361553",
"externalThreadId": "23695363377",
"reservationId": "36554770",
"propertyId": "312277",
"roomTypeId": "81297",
"recipient": {
"name": "Janis Sayer",
"email": null,
"phone": "",
"picture": "https://a0.muscache.com/im/pictures/user/a237b221-71be-4395-959d-d037569485ff.jpg?aki_policy=profile_x_medium"
},
"updatedAt": "2025-01-13T23:37:53",
"messages": [
{
"id": "220848069",
"body": "Thanks, you as well!",
"senderType": "Guest",
"createdAt": "2025-01-13T23:40:49",
"updatedAt": "2025-01-13T23:40:49",
"status": "SENT",
"seenStatus": "UNSEEN",
"attachments": [],
"type": "CHANNEL",
"isAutomatic": false,
"subject": ""
},
{
"id": "220847334",
"body": "Ok great! We look forward to hosting you. Have wonderful 2025 :)",
"senderType": "Owner",
"createdAt": "2025-01-13T23:37:53",
"updatedAt": "2025-01-13T23:37:55",
"status": "SENT",
"seenStatus": "SEEN",
"attachments": [],
"type": "CHANNEL",
"isAutomatic": false,
"subject": ""
},
{
"id": "220846112",
"body": "Yes, it is for next year in 2026.",
"senderType": "Guest",
"createdAt": "2025-01-13T23:33:02",
"updatedAt": "2025-01-13T23:33:02",
"status": "SENT",
"seenStatus": "UNSEEN",
"attachments": [],
"type": "CHANNEL",
"isAutomatic": false,
"subject": ""
},
{
"id": "220843375",
"body": "Hi Janis, I just noticed your reservation is for 2026 is this correct? I just wanted to make sure because we are booked for those days this year.",
"senderType": "Owner",
"createdAt": "2025-01-13T23:25:51",
"updatedAt": "2025-01-13T23:25:53",
"status": "SENT",
"seenStatus": "SEEN",
"attachments": [],
"type": "CHANNEL",
"isAutomatic": false,
"subject": ""
},
{
"id": "220817573",
"body": "Hi Janis, thank you for choosing our house. We hope you enjoy your stay.",
"senderType": "Owner",
"createdAt": "2025-01-13T22:17:51",
"updatedAt": "2025-01-13T22:17:53",
"status": "SENT",
"seenStatus": "SEEN",
"attachments": [],
"type": "CHANNEL",
"isAutomatic": false,
"subject": ""
},
{
"id": "220815154",
"body": "Hi! The home is lovely and the location seems great. My husband, dog and I will be working remotely and exploring Austin. \n\nThanks,\nJanis",
"senderType": "Guest",
"createdAt": "2025-01-13T22:15:41",
"updatedAt": "2025-01-13T22:15:41",
"status": "SENT",
"seenStatus": "UNSEEN",
"attachments": [],
"type": "CHANNEL",
"isAutomatic": false,
"subject": ""
}
]
}
]
}