Skip to main content

Query Schema Comparison Subtask Details

Query the status of a specific execution subtask under a schema comparison main task.

Request URL: /openapi/v1/compareschema/queryTaskExecInfo

Request Method: GET

Before You Call

Request Parameters

ParameterTypeRequiredDescriptionExample
taskIdStringYesSchema comparison main task ID.cc-th6j3fs58y
execIdLongYesSchema comparison subtask ID.46958

Response Parameters

ParameterTypeDescriptionExample
successBooleanWhether the request is successful.true
requestIdStringRequest ID, which can be used for troubleshooting and tracing.Sz5u6XOJ-hnoiwAAnjnnw3PJdiog1HEN
dataObjectSubtask detail object. See the fields below.See the example below
messageStringError message returned when the request fails.exec not found

data Fields

ParameterTypeDescriptionExample
taskIdStringSchema comparison main task ID.cc-th6j3fs58y
execIdLongSchema comparison subtask ID.46958
statusStringSubtask status. Common values include success, failed, starting, and running.success
errorMessageStringError message returned when the subtask fails.""

Request Example

{
"taskId": "cc-th6j3fs58y",
"execId": 46958
}

Successful Invocation Example

{
"success": true,
"requestId": "Sz5u6XOJ-hnoiwAAnjnnw3PJdiog1HEN",
"data": {
"taskId": "cc-th6j3fs58y",
"execId": 46958,
"status": "success"
}
}