Provides feedback if text moderation results returned by Alibaba Cloud Content Moderation are invalid.

Description

Operation: /green/text/feedback

QPS limit

You can send up to 20 requests per second to call this operation by using your Alibaba Cloud account. If you send an excessive number of requests, throttling is implemented, and your business may be affected.

Request parameters

For more information about the common request parameters that must be included in all Content Moderation API requests, see Common parameters.

The request body is a JSON array. The following table describes the parameters that each element of the JSON array contains.
Parameter Type Required Example Description
taskId String Yes taskid xxx The ID returned by the Content Moderation server, which uniquely identifies the moderation task.
dataId String No test7fcmzGkKbNp7@JqPQRnwIe-1mwwZX The ID of the moderated video, which you specify in the dataId parameter of the moderation request.
content String No foobar The content of the moderated text, which can be up to 10,000 characters in length.
label String No spam The expected category of moderation results for the moderated text in the specified moderation scenario. For more information about valid values, see Text moderation.
Note If you set the label parameter to normal, the system adds the text to the whitelist of the feedback-based text library in the Alibaba Cloud Content Moderation console. If you set the label parameter to a value other than normal, the system adds the text to the blacklist of the feedback-based text library.
note String No blabla... The description of the moderated text, such as the keywords in the text.

Response parameters

For more information about common response parameters that this operation returns, see Common response parameters.

The data parameter in the response body is empty.

Examples

Sample requests
http(s)://[Endpoint]/green/text/feedback
&<Common request parameters>
{
  "dataId": "test7fcmzGkKbNp7@JqPQRnwIe-1mwwZX", 
  "taskId": "taskid xxx", 
  "content": "foobar", 
  "label": "spam",
  "note": "blabla..."
}
Sample responses
{
  "msg": "OK", 
  "code": 200, 
  "requestId": "02C418E7-81D4-4375-9732-900B64D07CEE"
}