Skip to main content
POST
/
api
/
signals
/
feed
/
{id}
/
dismiss
Dismiss a signal
curl --request POST \
  --url https://app.puffle.ai/api/signals/feed/{id}/dismiss \
  --header 'Authorization: Bearer <token>'
{
  "success": true
}

Overview

Flips signal_results.dismissed = true for a single signal owned by the caller. The signal remains in the database (for analytics) but is excluded from the default feed view. The request body is empty.

AI agent notes

Idempotent and fire-and-forget. Calling twice is a no-op; the endpoint returns 200 whether or not the signal existed or was already dismissed. Safe to invoke without checking current state.When to call. Immediately after the user swipes/clicks “not relevant”, or when an agent has decided a signal is off-ICP and should be filtered from future retrievals. Combine with feedbackSignalFeed (thumbs-down) to also improve future scoring.Reversal. No public endpoint un-dismisses a signal — this is a one-way action from the API surface. Confirm with the human before dismissing high-score signals.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

Signal result UUID.

Pattern: ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$

Response

Signal dismissed (or already was).

success
enum<boolean>
required
Available options:
true