POST
/
api
/
app-api
/
sip
/
platform
/
v2
/
review
/
listReviewRuleAndTask
审核规则任务列表
curl --request POST \
  --url https://docflow.textin.com/api/app-api/sip/platform/v2/review/listReviewRuleAndTask \
  --header 'Content-Type: application/json' \
  --header 'x-ti-app-id: <api-key>' \
  --header 'x-ti-secret-code: <api-key>' \
  --data '{
  "workspaceIdNo": 1234,
  "fileBatchNo": "abcd",
  "classificationIdNoList": [
    1234
  ]
}'
{
  "code": 200,
  "data": [
    {
      "reviewRule": {
        "id": 1,
        "reviewRuleIdNo": 123,
        "reviewRuleType": "single",
        "reviewRulePrompt": "审核规则提示内容",
        "fileBatchNo": "abcd",
        "reviewRuleName": "审核规则名称",
        "workspaceIdNo": 123456,
        "classificationIdNoList": [
          1234
        ],
        "version": 1,
        "fieldInfoList": [
          {
            "fieldId": 1234,
            "fieldName": "名称",
            "blockType": 0,
            "tableId": -1,
            "tableName": "Table1",
            "classificationIdNo": 123,
            "classificationName": "身份证"
          }
        ]
      },
      "latestReviewRuleTask": {
        "gmtCreate": "<string>",
        "gmtModified": "<string>",
        "creatorId": 1,
        "operatorId": 1,
        "deleted": 0,
        "id": 1,
        "reviewRuleIdNo": 1,
        "reviewRuleVersion": 1,
        "processStatus": 1,
        "thinkOutput": "思考输出内容",
        "evalOutput": "评估输出内容",
        "bindingTaskIds": [
          1234
        ],
        "resultHighlights": [
          {
            "fileId": 12345,
            "taskId": 1234,
            "text": "文本内容",
            "position": [
              1
            ],
            "page": 0,
            "angel": 0,
            "startPos": 0,
            "endPos": 100
          }
        ],
        "evalResult": true,
        "duration": 100,
        "eval": false,
        "manualAuditStatus": "0:未确认、1:已确认",
        "manualAuditMessage": "人工批注内容"
      }
    }
  ],
  "msg": "成功",
  "traceId": "1234abcd"
}

Authorizations

x-ti-app-id
string
header
required
x-ti-secret-code
string
header
required

Headers

x-ti-app-id
string
required

x-ti-app-id

Example:

"1234abcd"

x-ti-secret-code
string
required

x-ti-secret-code

Example:

"1234abcd"

Body

application/json

返回审核规则和任务列表 Request VO

Response

200 - */*

OK

The response is of type object.