Skip to main content
Permission: Write · Workspace: optional Sends the user’s feedback about Goody to the Goody team — a comment, suggestion, bug report, or reaction. This tool never sends a gift or charges anything. It’s a good thing to offer after a successful send (“Want me to pass any feedback to the Goody team?”).

Parameters

message
string
required
The feedback, in the user’s own words.
sentiment
string
How the user feels — one of positive, neutral, or negative.
workspace_id
string
Optional. Associates the feedback with a workspace — from goody_workspaces_list.
order_batch_id
string
Optional. Ties the feedback to a specific gift batch the user is reacting to — from goody_order_batches_list.

Returns

feedback
object
The recorded feedback.
confirmation
string
A short confirmation message to relay to the user.

Example

"Tell the Goody team the preview link was super helpful."
{
  "name": "goody_feedback_create",
  "arguments": {
    "message": "The preview link was super helpful.",
    "sentiment": "positive"
  }
}
{
  "feedback": {
    "id": "f10c…",
    "message": "The preview link was super helpful.",
    "sentiment": "positive",
    "created_at": "2026-06-23T16:40:00Z"
  },
  "confirmation": "Thanks — your feedback has been sent to the Goody team."
}
After a successful send with goody_order_batches_create, pass along the order_batch_id here to tie a reaction to that specific gift.