Skip to main content
DELETE
Remove relevance feedback

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

Confirmation of a feedback removal. removed distinguishes a real deletion from a no-op on a mention that had no stored feedback.

success
boolean
required
removed
boolean
required

true when a stored feedback record was deleted; false when no feedback existed for that mention key (the request is a harmless no-op either way).