agent_id
. It provides detailed information about each rating given to the agent, including the user's identity, the nature of the rating (upvote or downvote), and the timestamps of creation and modification.agent_id
).agent_id
, follow this guide:curl --location -g --request GET 'https:///v2/api/agent/0/rating' \
--header 'Ocp-Apim-Subscription-Key: ' \
--header 'Authorization: Bearer '
{
"success": true,
"message": "Agent Rating fetched successfully",
"data": [
{
"id": 77,
"created_by": "user@example.com",
"created_on": "2025-01-16T21:23:41.587726Z",
"modified_by": "",
"modified_on": "2025-01-16T21:23:41.587749Z",
"is_upvote": false,
"user": 160,
"agent": 1251
}
]
}