Skip to main content
DELETE
/
projects
/
{project_id}
/
ratings
/
{rating_id}
curl -X DELETE "https://seggwat.com/api/v1/projects/507f1f77bcf86cd799439011/ratings/507f1f77bcf86cd799439022" \
  -H "X-API-Key: oat_xxxxxxxxxxxxxxxxxxxxx"
(empty response body)

Authentication

X-API-Key
string
required
Your Organization Access Token. See Authentication for details.

Path Parameters

project_id
string
required
The unique identifier of the project (MongoDB ObjectId). You can find this in the dashboard under project settings.
rating_id
string
required
The unique identifier of the rating item to delete.

Response

Returns 204 No Content on successful deletion. No response body is returned.
This endpoint performs a soft-delete by setting archived=true on the rating. The rating data is preserved in the database but will no longer appear in list queries or be included in statistics.
curl -X DELETE "https://seggwat.com/api/v1/projects/507f1f77bcf86cd799439011/ratings/507f1f77bcf86cd799439022" \
  -H "X-API-Key: oat_xxxxxxxxxxxxxxxxxxxxx"
(empty response body)