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

Application Live Transcoding Settings Update

Updates the live transcoding settings for an application.

Request

PropertyValue
MethodPATCH
URL/api/applications/{appName}/settings/transcoding
Content-Typeapplication/json
AuthenticationBearer Token
Request
Code iconbash
curl -X PATCH "{BASE_URL}/api/applications/{appName}/settings/transcoding" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"key": "value"}'

Path Parameters

ParameterTypeRequiredDescription
appNamestringYesApplication name
Request
Code iconbash
curl -X PATCH "{BASE_URL}/api/applications/{appName}/settings/transcoding" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json"

Request Body

ParameterTypeRequiredDescription
data.attributes.enabledbooleanNoEnable live transcoding
data.attributes.enabledPresetsstring[]NoList of enabled preset names

Example Request

Code iconjson
{
  "data": {
    "attributes": {
      "enabled": true,
      "enabledPresets": ["360p", "720p"]
    }
  }
}

Response Body

Live Transcoding Settings

ParameterTypeDescription
data.attributes.enabled.valuebooleanLive transcoding enabled status
data.attributes.enabled.editablebooleanIndicates if the field can be modified
data.attributes.enabled.lockedBystringLocked by environment variable (if present)
data.attributes.enabledPresetsstring[]List of enabled preset names
messagestringResponse status message

Metadata

ParameterTypeDescription
meta.executionTimeintegerRequest processing time in milliseconds
meta.generatedAtintegerResponse generation timestamp (Unix timestamp in ms)
Successful Response (200)
Code iconjson
{
  "data": {
    "attributes": {
      "enabled": {
        "editable": true,
        "value": true
      },
      "enabledPresets": ["360p", "720p"]
    }
  },
  "meta": {
    "executionTime": 5,
    "generatedAt": 1766070109108
  },
  "message": "Live Transcoding Settings have been updated"
}

Error Responses

Application Not Found (404)

ParameterTypeDescription
messagestringHuman-readable error message
Code iconjson
{
  "message": "Application not found"
}
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.