This API is used to submit sample review comments of an acceptance task.
You can debug this API through automatic authentication in or use the SDK sample code generated by API Explorer.
POST /v2/{project_id}/datasets/{dataset_id}/workforce-tasks/{workforce_task_id}/acceptance/batch-comment
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
dataset_id |
Yes |
String |
Dataset ID. |
project_id |
Yes |
String |
Project ID. For details about how to obtain a project ID, see Obtaining a Project ID and Name. |
workforce_task_id |
Yes |
String |
ID of a labeling task. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
comments |
Yes |
Array of SampleComment objects |
Review comment list. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
accept |
Yes |
Boolean |
Whether the submitted sample review comments are passed. Options:
|
comment |
No |
String |
Review comment, which contains 0 to 256 characters, excluding special characters (!<>=&"''). |
sample_id |
No |
String |
Sample ID, which can be obtained by invoking the API for querying the sample list. |
score |
No |
String |
Review score, whose value can be A, B, C, or D, in descending order. |
worker_id |
No |
String |
Annotation member ID, which can be obtained by invoking the annotation member list interface. |
None
The following is an example of how to submit sample review comments of an acceptance task. accept has been set to true and score has been set to A.
{ "comments" : [ { "worker_id" : "8c15ad080d3eabad14037b4eb00d6a6f", "sample_id" : "09ac49d5b06385849c8769fdcf0f6d60", "accept" : true, "comment" : "", "score" : "A" } ] }
Status code: 200
OK
{ }
Status Code |
Description |
---|---|
200 |
OK |
401 |
Unauthorized |
403 |
Forbidden |
404 |
Not Found |
See Error Codes.