Skip to main content
DELETE
/
projects
/
{project_id}
/
feedback
/
{feedback_id}
curl -X DELETE "https://seggwat.com/api/v1/projects/507f1f77bcf86cd799439011/feedback/507f1f77bcf86cd799439022" \
  -H "X-API-Key: oat_xxxxxxxxxxxxxxxxxxxxx"
(No content)

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.
feedback_id
string
required
The unique identifier of the feedback item to delete.

Response

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