agent_id
as a required query parameter to fetch reviews linked to that specific agent.limit
parameter to control the number of reviews returned in the response.agent_id
, refer to this guide:curl --location -g --request GET 'https:///v2/api/agent/review?agent_id={agent_id}' \
--header 'Ocp-Apim-Subscription-Key: ' \
--header 'Authorization: Bearer '
{
"success": true,
"message": "Agent Reviews fetched successfully",
"data": [
{
"id": 1,
"created_by": "user@example.com",
"created_on": "2025-01-15T14:04:33.462745Z",
"modified_by": "",
"modified_on": "2025-01-15T14:04:33.462779Z",
"user_review": "I am test review",
"user": 160,
"agent": 1251
}
]
}