Skip to main content
DELETE
/
api
/
v2
/
feedback
Remove relevance feedback
curl --request DELETE \
  --url https://app.octolens.com/api/v2/feedback \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "sourceId": "<string>",
  "timestamp": "2026-05-06 13:35:37.000"
}
'
{
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://octolens.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Clerk API key. Create one in Settings → API Keys. Pass as Authorization: Bearer <key>.

Body

application/json

Remove an existing feedback record by mention key.

sourceId
string
required

Mention's sourceId.

timestamp
string
required

Mention's timestamp — composite key with sourceId. Pass the value as returned by the list endpoint (Tinybird-style YYYY-MM-DD HH:mm:ss.SSS); ISO 8601 also accepted.

Pattern: ^\d{4}-\d{2}-\d{2}[ T]\d{2}:\d{2}:\d{2}(\.\d{1,9})?(Z|[+-]\d{2}:?\d{2})?$
Example:

"2026-05-06 13:35:37.000"

Response

200 response

Simple confirmation response.

success
boolean
required