メインコンテンツへスキップ
POST
/
api
/
app-api
/
sip
/
platform
/
v2
/
review
/
task
/
submit
レビュータスクを送信
curl --request POST \
  --url https://docflow.textin.com/api/app-api/sip/platform/v2/review/task/submit \
  --header 'Content-Type: application/json' \
  --header 'x-ti-app-id: <api-key>' \
  --header 'x-ti-secret-code: <api-key>' \
  --data '
{
  "workspace_id": "1234567890",
  "name": "レビュータスク 1",
  "repo_id": "31415926",
  "extract_task_ids": [
    "1234567890"
  ],
  "batch_number": "1234567890",
  "model": "deepseek-r1"
}
'
{
  "code": 200,
  "msg": "<string>",
  "result": {
    "task_id": "31415926"
  }
}

承認

x-ti-app-id
string
header
必須
x-ti-secret-code
string
header
必須

ボディ

application/json
workspace_id
string
必須

ワークスペース ID

:

"1234567890"

name
string
必須

タスク名

Maximum string length: 100
:

"レビュータスク 1"

repo_id
string
必須

レビュー規則リポジトリ ID

:

"31415926"

extract_task_ids
string[]

抽出タスク ID

batch_number
string

バッチ番号

:

"1234567890"

model
string

レビュータスクモデル。対応モデル: deepseek-r1、qwq-32b、qwen3-max、ORM-O1

:

"deepseek-r1"

レスポンス

200 - application/json

レビュータスクの送信に成功

code
integer
必須

ステータスコード

:

200

msg
string
必須

ステータス説明

result
object