POST
/
api
/
app-api
/
sip
/
platform
/
v2
/
review
/
submitReviewTask
Submit Review Task
curl --request POST \
  --url https://docflow.textin.com/api/app-api/sip/platform/v2/review/submitReviewTask \
  --header 'Content-Type: application/json' \
  --header 'x-ti-app-id: <api-key>' \
  --header 'x-ti-secret-code: <api-key>' \
  --data '{
  "ruleIdNoList": [
    123
  ],
  "executeTaskIdList": [
    123
  ]
}'
{
  "code": 200,
  "data": [
    {
      "reviewTaskId": 123,
      "ruleIdNo": 123
    }
  ],
  "msg": "Success",
  "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

Submit review task Request VO

Response

200 - */*

OK

The response is of type object.