curl --location -g --request POST 'https:///api/v2/chat-logs/search' \
--header 'Ocp-Apim-Subscription-Key: ' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"chatlog_list": [
0
]
}'
{
"success": true,
"message": "Chat Log Search Results Retrieved Successfully",
"data": {
"chat_logs": [
{
"id": 0,
"question": "string",
"response": {
"property1": null,
"property2": null
},
"llm_config_id": 0
}
]
}
}