v1

latestOpenAPI 3.0.22026-07-17373198641.7 KB
project
v1

Bulk assign batch of documents to a review team member

Params:
    document_ids: list[int]
    all: any value - update all documents if any value
    no_document_ids: list[int] - exclude those docs from action (if "all" is set)
    assignee_id: int
Returns:
    int (number of reassigned documents)
post/api/v1/project/projects/{id}/assign_documents/

Path parameters

idstring required

A unique integer value identifying this project.

Request body

assignee_idinteger nullable
allboolean
document_idsinteger[]
no_document_idsinteger[]

Example request

{
  "all": true,
  "document_ids": [
    6,
    6
  ],
  "no_document_ids": [
    1,
    1
  ],
  "assignee_id": 0
}

Response

successinteger nullable

Example response

{
  "success": 0
}