v1
latestOpenAPI 3.0.22026-07-17373198641.7 KBproject
v1
Bulk assign batch of annotations to a review team member
Params:
annotation_ids: list[int]
all: any value - update all annotations if any value
no_annotation_ids: list[int] - exclude those annotations from action (if "all" is set)
assignee_id: int
Returns:
int (number of reassigned annotations)
post/api/v1/project/projects/{id}/assign_annotations/
Path parameters
idstring required
A unique integer value identifying this project.
Request body
Example request
{
"all": true,
"no_annotation_ids": [
1,
1
],
"annotation_ids": [
6,
6
],
"assignee_id": 0
}Response
Example response
{
"success": 0
}