up: Registers a positive vote (upvote) for the agent.down: Registers a negative vote (downvote) for the agent.clear: Removes the user’s previous vote (whether up or down).agent_id to specify which agent the vote should be applied to.vote value ("up", "down", or "clear").agent_id, follow this guide:curl --location --request POST '/v2/api/agent//vote' \
--header 'Content-Type: application/json' \
--data-raw '{
"vote": "up"
}'{
"success": true,
"message": "Successfully upvoted the agent",
"data": {
"like_count": 1,
"dislike_count": 0
}
}