Feedback Display

🚧

Only API keys on our Conversations platform are eligible to use this API version. Refer to the Platforms section of our Platform & API Concepts documentation to learn which platform your API keys are on.

Overview

Inappropriate feedback can be displayed on Reviews, Questions, Answers, and Comments. In order for inappropriate feedback to be displayed, the API key must be configured to allow that access. Please contact us to assist you with enabling this feature.

If the key allows access to this data, each review object will have a count of the inappropriate feedback votes received. Below are two examples – one with no inappropriate feedback votes and another with two:

Examples

The following examples demonstrate feedback requests. For a complete overview of using the Conversations API to gather and display feedback, refer to the Feedback Submission tutorial.

No inappropriate feedback

(
    ...
    Results : [
        {
            Id: "6876723",
            ReviewText: "Curabitur pulvinar nulla ut mauris varius i..."
            ...
            TotalInappropriateFeedbackCount: 0,
            ...
        }
    ]
}

Ellipses (…) in above example indicate elements have been removed for clarity.

With inappropriate feedback

(
    ...
    Results : [
        {
            Id: "6876723",
            ReviewText: "Curabitur pulvinar nulla ut mauris varius i..."
            ...
            TotalInappropriateFeedbackCount: 2,
            ...
        }
    ]
}

Ellipses (…) in above example indicate elements have been removed for clarity.