> For the complete documentation index, see [llms.txt](https://jolzee.gitbook.io/leopard/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://jolzee.gitbook.io/leopard/components/forms-1/feedback-form.md).

# Feedback Form

### Screenshots

![Feedback for displayed by Leopard](/files/-Lrkakpp3LtiZFMLNZex)

### Output Parameter

```groovy
offerFeedbackForm = 

{
  "rating"  : true,
  "reasons" : [ "Reason 1", "Reason 2" ],
  "nodeId"  : "8d20a808-a4a5-4af1-8b55-5c058ec929f4",
  "label"   : "Feedback?"
}
```

![Output Parameter in Teneo](/files/-Lrkakps0Gnbv-Fw9vgB)

### Post Back from Leopard

When the user fills in the feedback for Leopard will send a request to your TIE with `command=feedback` and a parameter called `feedback`. The value for the feedback parameter is a URI encoded JSON string with the following format:

```javascript
{
  "rating"  : 3,
  "reasons" : [ "Reason 1", "Reason 2" ],
  "comment" : "This answer doesn't look correct",
  "nodeId"  : "8d20a808-a4a5-4af1-8b55-5c058ec929f4"
}
```

{% hint style="info" %}
You can look for **?command=facebook** in either a pre-processing script or have a trigger in a feedback flow that then grabs the feedback and sets the feedback as flow variables that will then be persisted to Teneo Inquire. Any answer sent back from the flow will be ignored by Leopard.&#x20;
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://jolzee.gitbook.io/leopard/components/forms-1/feedback-form.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
