Skip to main content
DELETE
/
api
/
v1
/
feedback
Delete Feedback
curl --request DELETE \
  --url https://www.catchthegoodones.com/api/v1/feedback
{
  "success": true
}
Removes feedback for a candidate under a specific saved search (undo a Good One or Bad One rating).

Headers

HeaderRequiredDescription
AuthorizationYesBearer ctgo_your_api_key_here

Query parameters

ParameterRequiredDescription
candidateIdYesThe person of interest ID
savedSearchIdYesThe saved search ID

Example

curl -X DELETE "https://www.catchthegoodones.com/api/v1/feedback?candidateId=42&savedSearchId=1" \
  -H "Authorization: Bearer ctgo_your_api_key_here"

Response

{
  "success": true
}