Reviews Service: Overview
Provides operations that allow you to manage reviews of apps, APIs, or groups on the platform, including creating, deleting, and listing reviews and marking reviews as helpful.
URL: https://{hostname}/api/reviews
Note: Most of these operations take the ReviewID as a parameter. You can get this value from the response to the GET /api/reviews operation. For information about any other IDs used in path parameters, see IDs on the Platform.
Action | Endpoint | Description |
---|---|---|
add review | POST /api/reviews | Adds a review of a resource. |
delete review | DELETE /api/reviews/{ReviewID} | Deletes the specified review. |
get review | GET /api/reviews/{ReviewID} | Returns the specified review. |
get review details | GET /api/reviews/{ReviewID}/details | Returns information about the specified review. |
list reviews | GET /api/reviews | Returns a list of all reviews. |
mark a review | POST /api/reviews/{ReviewID}/marks | Adds a mark to a review. |
unmark a review | DELETE /api/reviews/{ReviewID}/marks/{UserID} | Removes the specified user's mark from a review that the user has previously marked. |
update a review | PUT /api/reviews/{ReviewID} | Updates the specified review. |