Submit Review Task
curl --request POST \
--url https://docflow.textin.ai/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": "Review Task 1",
"repo_id": "31415926",
"extract_task_ids": [
"1234567890"
],
"batch_number": "1234567890",
"model": "deepseek-v4-pro"
}
'import requests
url = "https://docflow.textin.ai/api/app-api/sip/platform/v2/review/task/submit"
payload = {
"workspace_id": "1234567890",
"name": "Review Task 1",
"repo_id": "31415926",
"extract_task_ids": ["1234567890"],
"batch_number": "1234567890",
"model": "deepseek-v4-pro"
}
headers = {
"x-ti-app-id": "<api-key>",
"x-ti-secret-code": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-ti-app-id': '<api-key>',
'x-ti-secret-code': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
workspace_id: '1234567890',
name: 'Review Task 1',
repo_id: '31415926',
extract_task_ids: ['1234567890'],
batch_number: '1234567890',
model: 'deepseek-v4-pro'
})
};
fetch('https://docflow.textin.ai/api/app-api/sip/platform/v2/review/task/submit', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://docflow.textin.ai/api/app-api/sip/platform/v2/review/task/submit",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'workspace_id' => '1234567890',
'name' => 'Review Task 1',
'repo_id' => '31415926',
'extract_task_ids' => [
'1234567890'
],
'batch_number' => '1234567890',
'model' => 'deepseek-v4-pro'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-ti-app-id: <api-key>",
"x-ti-secret-code: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://docflow.textin.ai/api/app-api/sip/platform/v2/review/task/submit"
payload := strings.NewReader("{\n \"workspace_id\": \"1234567890\",\n \"name\": \"Review Task 1\",\n \"repo_id\": \"31415926\",\n \"extract_task_ids\": [\n \"1234567890\"\n ],\n \"batch_number\": \"1234567890\",\n \"model\": \"deepseek-v4-pro\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-ti-app-id", "<api-key>")
req.Header.Add("x-ti-secret-code", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://docflow.textin.ai/api/app-api/sip/platform/v2/review/task/submit")
.header("x-ti-app-id", "<api-key>")
.header("x-ti-secret-code", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"workspace_id\": \"1234567890\",\n \"name\": \"Review Task 1\",\n \"repo_id\": \"31415926\",\n \"extract_task_ids\": [\n \"1234567890\"\n ],\n \"batch_number\": \"1234567890\",\n \"model\": \"deepseek-v4-pro\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://docflow.textin.ai/api/app-api/sip/platform/v2/review/task/submit")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-ti-app-id"] = '<api-key>'
request["x-ti-secret-code"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"workspace_id\": \"1234567890\",\n \"name\": \"Review Task 1\",\n \"repo_id\": \"31415926\",\n \"extract_task_ids\": [\n \"1234567890\"\n ],\n \"batch_number\": \"1234567890\",\n \"model\": \"deepseek-v4-pro\"\n}"
response = http.request(request)
puts response.read_body{
"code": 200,
"msg": "<string>",
"result": {
"task_id": "31415926",
"model": "deepseek-v4-pro"
}
}Intelligent Review
Submit Review Task
Submit review task
POST
/
api
/
app-api
/
sip
/
platform
/
v2
/
review
/
task
/
submit
Submit Review Task
curl --request POST \
--url https://docflow.textin.ai/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": "Review Task 1",
"repo_id": "31415926",
"extract_task_ids": [
"1234567890"
],
"batch_number": "1234567890",
"model": "deepseek-v4-pro"
}
'import requests
url = "https://docflow.textin.ai/api/app-api/sip/platform/v2/review/task/submit"
payload = {
"workspace_id": "1234567890",
"name": "Review Task 1",
"repo_id": "31415926",
"extract_task_ids": ["1234567890"],
"batch_number": "1234567890",
"model": "deepseek-v4-pro"
}
headers = {
"x-ti-app-id": "<api-key>",
"x-ti-secret-code": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-ti-app-id': '<api-key>',
'x-ti-secret-code': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
workspace_id: '1234567890',
name: 'Review Task 1',
repo_id: '31415926',
extract_task_ids: ['1234567890'],
batch_number: '1234567890',
model: 'deepseek-v4-pro'
})
};
fetch('https://docflow.textin.ai/api/app-api/sip/platform/v2/review/task/submit', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://docflow.textin.ai/api/app-api/sip/platform/v2/review/task/submit",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'workspace_id' => '1234567890',
'name' => 'Review Task 1',
'repo_id' => '31415926',
'extract_task_ids' => [
'1234567890'
],
'batch_number' => '1234567890',
'model' => 'deepseek-v4-pro'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-ti-app-id: <api-key>",
"x-ti-secret-code: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://docflow.textin.ai/api/app-api/sip/platform/v2/review/task/submit"
payload := strings.NewReader("{\n \"workspace_id\": \"1234567890\",\n \"name\": \"Review Task 1\",\n \"repo_id\": \"31415926\",\n \"extract_task_ids\": [\n \"1234567890\"\n ],\n \"batch_number\": \"1234567890\",\n \"model\": \"deepseek-v4-pro\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-ti-app-id", "<api-key>")
req.Header.Add("x-ti-secret-code", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://docflow.textin.ai/api/app-api/sip/platform/v2/review/task/submit")
.header("x-ti-app-id", "<api-key>")
.header("x-ti-secret-code", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"workspace_id\": \"1234567890\",\n \"name\": \"Review Task 1\",\n \"repo_id\": \"31415926\",\n \"extract_task_ids\": [\n \"1234567890\"\n ],\n \"batch_number\": \"1234567890\",\n \"model\": \"deepseek-v4-pro\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://docflow.textin.ai/api/app-api/sip/platform/v2/review/task/submit")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-ti-app-id"] = '<api-key>'
request["x-ti-secret-code"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"workspace_id\": \"1234567890\",\n \"name\": \"Review Task 1\",\n \"repo_id\": \"31415926\",\n \"extract_task_ids\": [\n \"1234567890\"\n ],\n \"batch_number\": \"1234567890\",\n \"model\": \"deepseek-v4-pro\"\n}"
response = http.request(request)
puts response.read_body{
"code": 200,
"msg": "<string>",
"result": {
"task_id": "31415926",
"model": "deepseek-v4-pro"
}
}Body
application/json
Workspace ID
Example:
"1234567890"
Task name
Maximum string length:
100Example:
"Review Task 1"
Review rule repository ID
Example:
"31415926"
Extraction task ID
Batch number
Example:
"1234567890"
Review task model (optional). Available values: deepseek-v4-pro, qwen3.6-plus, qwen3.7-max, ORM-O1. If omitted, the rule repository's default review model is used.
Starting July 8, 2026, the following legacy models were deprecated. Use the corresponding replacement model:
| Legacy model | Replacement model |
|---|---|
deepseek-r1 | deepseek-v4-pro |
qwq-32b | qwen3.6-plus |
qwen3-max | qwen3.7-max |
Example:
"deepseek-v4-pro"
⌘I

