Updates the live transcoding settings for an application.
| Property | Value |
|---|---|
| Method | PATCH |
| URL | /api/applications/{appName}/settings/transcoding |
| Content-Type | application/json |
| Authentication | Bearer Token |
| Parameter | Type | Required | Description |
|---|---|---|---|
appName |
string | Yes | Application name |
| Parameter | Type | Required | Description |
|---|---|---|---|
data.attributes.enabled |
boolean | No | Enable live transcoding |
data.attributes.enabledPresets |
string[] | No | List of enabled preset names |
{
"data": {
"attributes": {
"enabled": true,
"enabledPresets": ["360p", "720p"]
}
}
}
| Code | Description |
|---|---|
| 200 | Success - Settings updated |
| 400 | Bad Request - Invalid parameters |
| 401 | Unauthorized - Invalid or missing token |
| 404 | Not Found - Application does not exist |
| 429 | Too Many Requests - Rate limit exceeded |
| 500 | Internal Server Error |
{
"data": {
"attributes": {
"enabled": {
"editable": true,
"value": true
},
"enabledPresets": ["360p", "720p"]
}
},
"meta": {
"executionTime": 5,
"generatedAt": 1766070109108
},
"message": "Live Transcoding Settings have been updated"
}
| Parameter | Type | Description |
|---|---|---|
data.attributes.enabled.value |
boolean | Live transcoding enabled status |
data.attributes.enabled.editable |
boolean | Indicates if the field can be modified |
data.attributes.enabled.lockedBy |
string | Locked by environment variable (if present) |
data.attributes.enabledPresets |
string[] | List of enabled preset names |
message |
string | Response status message |
| Parameter | Type | Description |
|---|---|---|
meta.executionTime |
integer | Request processing time in milliseconds |
meta.generatedAt |
integer | Response generation timestamp (Unix timestamp in ms) |
{
"message": "Application not found"
}
| Parameter | Type | Description |
|---|---|---|
message |
string | Human-readable error message |