跳转到主要内容
POST
/
api
/
app-api
/
sip
/
platform
/
v2
/
review
/
getRulesByClassificationIdNo
审核规则列表
curl --request POST \
  --url https://docflow.textin.com/api/app-api/sip/platform/v2/review/getRulesByClassificationIdNo \
  --header 'Content-Type: application/json' \
  --header 'x-ti-app-id: <api-key>' \
  --header 'x-ti-secret-code: <api-key>' \
  --data '{
  "classificationIdNoList": [
    123
  ],
  "workspaceIdNo": 123,
  "fileBatchNo": "abcd"
}'
{
  "code": 200,
  "data": [
    {
      "id": 1,
      "reviewRuleIdNo": 1,
      "reviewRuleType": "single",
      "reviewRulePrompt": "审核规则提示内容",
      "fileBatchNo": "abcd",
      "reviewRuleName": "abcd",
      "workspaceIdNo": 1234,
      "classificationIdNoList": [
        1234
      ],
      "version": 1,
      "fieldInfoList": [
        {
          "fieldId": 1234,
          "fieldName": "名称",
          "blockType": 0,
          "tableId": -1,
          "tableName": "Table1",
          "classificationIdNo": 123,
          "classificationName": "身份证"
        }
      ]
    }
  ],
  "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

根据分类ID返回任务队列信息列表-请求VO

workspaceIdNo
string
required

工作空间ID

Example:

123

fileBatchNo
string
required

文件批次号

Example:

"abcd"

classificationIdNoList
string[]

分类ID列表

分类ID

Response

200 - */*

OK

code
integer

状态码

Example:

200

data
object[]
msg
string

状态信息

Example:

"成功"

traceId
string

链路id

Example:

"1234abcd"