Storm docs logo
Search the docs.../
Explore Storm Products

Transcode Task List (Batch)

Retrieves multiple transcoding tasks by their IDs in a single request.

Request

PropertyValue
MethodPOST
URL/api/transcode/active/batch
Content-Typeapplication/json
AuthenticationBearer Token
Request
Code iconbash
curl -X POST "{BASE_URL}/api/transcode/active/batch" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"key": "value"}'

Request Body

ParameterTypeRequiredDescription
data.idsstring[]YesArray of task IDs to retrieve
Request Body
Code iconjson
{
  "data": {
    "ids": ["p_v7t8b218mj1x74ux", "p_f81yhse9mj1x6nk8"]
  }
}

Response Body

Result Arrays

ParameterTypeDescription
data.foundarrayArray of found task objects
data.notFoundstring[]Array of task IDs that were not found

Task Object (in data.found[])

ParameterTypeDescription
data.found[].idstringUnique identifier of the task
data.found[].typestringTask type
data.found[].statestringTask state
data.found[].applicationNamestringApplication name
data.found[].streamKeystringStream key
data.found[].subStreamstringSub-stream name
data.found[].startTimeintegerTask start time (Unix timestamp in ms)
data.found[].durationintegerTask duration in milliseconds
data.found[].readPacketsintegerNumber of packets read
data.found[].writePacketsintegerNumber of packets written
data.found[].errorCountintegerNumber of errors encountered
data.found[].isReaderbooleanIndicates if task is reading data
data.found[].isWriterbooleanIndicates if task is writing data

Metadata

ParameterTypeDescription
meta.executionTimeintegerRequest processing time in milliseconds
meta.generatedAtintegerResponse generation timestamp (Unix timestamp in ms)
Successful Response (200)
Code iconjson
{
  "data": {
    "found": [
      {
        "id": "p_v7t8b218mj1x74ux",
        "type": "FILE_READER",
        "state": "RUNNING",
        "applicationName": "origin",
        "streamKey": "eternals",
        "subStream": "native",
        "startTime": 1765486700905,
        "duration": 305629206,
        "readPackets": 10209191,
        "writePackets": 0,
        "errorCount": 0,
        "isReader": true,
        "isWriter": true
      }
    ],
    "notFound": [
      "p_f81yhse9mj1x6nk8"
    ]
  },
  "meta": {
    "executionTime": 0,
    "generatedAt": 1765793419437
  }
}

Error Response (4xx/5xx)

ParameterTypeDescription
messagestringHuman-readable error message
Code iconjson
{
  "message": "Error message"
}
Support Needed?

Create a free ticket and our support team will provide you necessary assistance.

Blog
Support
About us
Patents
Term of use
Privacy policy
Contact
©2026 Storm Streaming Media. All Rights Reserved.