curl --location --request GET 'http://dev-cn.your-api-server.com/api/v1/get-conversations?chatbotId=<chatbot-id>startDate=2023-01-01&endDate=2023-12-12&page=1&size=20' \
--header 'Authorization: Bearer <Your-Secret-Key>'
{
"data": [
{
"id": "string",
"created_at": "string",
"messages": [
{
"role": "string",
"content": "string"
}
],
"chatbot_id": "string",
"customer": "string",
"source": "string"
}
]
}