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

Cluster Transcode Status Update

Updates the cluster transcoding service status.

Request

PropertyValue
MethodPUT
URL/api/cluster/transcode/status
Content-Typeapplication/json
AuthenticationBearer Token
Request
Code iconbash
curl -X PUT "{BASE_URL}/api/cluster/transcode/status" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"data":{"attributes":{"status":"active"}}}'

Request Body

ParameterTypeRequiredDescription
data.attributes.statusstringYesTranscode service status ("active" | "inactive")
Request Body
Code iconjson
{
  "data": {
    "attributes": {
      "status": "active"
    }
  }
}

Response Body

ParameterTypeDescription
data.nextEvaluationTimeintegerNext evaluation timestamp (Unix timestamp in ms, -1 when inactive)
data.activeTranscodeTaskCountintegerNumber of currently active transcoding tasks
data.evaluationIntervalintegerEvaluation interval in seconds
data.maxTranscodeTaskCountintegerMaximum number of concurrent transcoding tasks
data.statusstringUpdated transcode service status
meta.executionTimeintegerRequest processing time in milliseconds
meta.generatedAtintegerResponse generation timestamp (Unix timestamp in ms)
Successful Response (200)
Code iconjson
{
  "data": {
    "nextEvaluationTime": 1771958070153,
    "activeTranscodeTaskCount": 1,
    "evaluationInterval": 30,
    "maxTranscodeTaskCount": 15,
    "status": "active"
  },
  "meta": {
    "executionTime": 40,
    "generatedAt": 1771958070153
  }
}

Error Response (4xx/5xx)

ParameterTypeDescription
messagestringHuman-readable error message
Error Response
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.