Skip to main content
POST
/
api
/
signals
/
feed
/
{id}
/
feedback
Submit signal feedback
curl --request POST \
  --url https://app.puffle.ai/api/signals/feed/{id}/feedback \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "feedback": "positive"
}
'
{
  "success": true
}

Overview

Writes signal_results.feedback to either positive (thumbs up) or negative (thumbs down) for a signal owned by the caller. Overwrites any prior value — submit again to change a rating. Feedback is fed back into the signal pipeline asynchronously to improve future classification and scoring.

AI agent notes

Idempotent and fire-and-forget. Last write wins; calling again with the same rating is a no-op. Calling with a flipped rating updates to the new value.When to call.
  • positive — the user marked a signal as valuable; indicates the signal type and source config are on-target.
  • negative — the user indicated the signal is off-ICP; pair with dismissSignalFeed to both hide it from the UI and teach the classifier.
Body. { "feedback": "positive" | "negative" }. Any other value returns a 400 with feedback must be 'positive' or 'negative'.

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)$

Body

application/json
feedback
enum<string>
required

Thumbs-up (positive) or thumbs-down (negative). Used to improve scoring over time.

Available options:
positive,
negative

Response

Feedback recorded.

success
enum<boolean>
required
Available options:
true