Skip to main content
GET
/
open
/
tasks
/
query
/
{taskId}
Query Single Task Status and Progress
curl --request GET \
  --url https://api.example.com/open/tasks/query/{taskId}
{
  "code": 123,
  "msg": "<string>",
  "data": {
    "taskId": 123,
    "taskStatus": 123,
    "progress": 123,
    "failReason": "<string>",
    "results": [
      {
        "fileUrl": "<string>",
        "thumbnailUrl": "<string>",
        "durationSeconds": 123,
        "width": 123,
        "height": 123
      }
    ]
  }
}

Headers

Authorization
string

Authentication Token

Path Parameters

taskId
integer
required

Task ID

Response

200 - application/json

OK

code
integer

Response Code: 0 = Success, non-zero = Failure

msg
string

Response Message

data
object

Response Data