page
query parameter.current_page
total_pages
total_count
of all chat threadscurl --location -g --request GET 'https:///v2/api/chat-thread/admin-panel' \
--header 'Ocp-Apim-Subscription-Key: ' \
--header 'Authorization: Bearer '
{
"success": true,
"message": "Chat threads retrieved successfully.",
"data": {
"chat_threads": [
{
"id": 101,
"title": "Sample Chat Thread",
"user": "user@example.com",
"agent": "AI Assistant",
"created_on": "2025-01-01T12:00:00Z"
}
],
"pagination": {
"current_page": 2,
"total_pages": 50,
"total_count": 500
}
}
}