Update Playlist
Update the playlist
curl -X POST "https://api.5centscdn.com/v2/streams/scheduledplaylist/1001/playlist/42" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{
"name": "default",
"schedule": "instant",
"scheduletime": "0",
"loop": "1",
"repeatfor": 0,
"repeatintervaldays": 0,
"autorestart": "0",
"files": [
"/2.mp4"
]
}'
import requests
import json
url = "https://api.5centscdn.com/v2/streams/scheduledplaylist/1001/playlist/42"
headers = {
"Content-Type": "application/json",
"X-API-Key": "YOUR_API_KEY"
}
data = {
"name": "default",
"schedule": "instant",
"scheduletime": "0",
"loop": "1",
"repeatfor": 0,
"repeatintervaldays": 0,
"autorestart": "0",
"files": [
"/2.mp4"
]
}
response = requests.post(url, headers=headers, json=data)
print(response.json())
const response = await fetch("https://api.5centscdn.com/v2/streams/scheduledplaylist/1001/playlist/42", {
method: "POST",
headers: {
"Content-Type": "application/json",
"X-API-Key": "YOUR_API_KEY"
},
body: JSON.stringify({
"name": "default",
"schedule": "instant",
"scheduletime": "0",
"loop": "1",
"repeatfor": 0,
"repeatintervaldays": 0,
"autorestart": "0",
"files": [
"/2.mp4"
]
})
});
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"net/http"
"bytes"
"encoding/json"
)
func main() {
data := []byte(`{
"name": "default",
"schedule": "instant",
"scheduletime": "0",
"loop": "1",
"repeatfor": 0,
"repeatintervaldays": 0,
"autorestart": "0",
"files": [
"/2.mp4"
]
}`)
req, err := http.NewRequest("POST", "https://api.5centscdn.com/v2/streams/scheduledplaylist/1001/playlist/42", bytes.NewBuffer(data))
if err != nil {
panic(err)
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("X-API-Key", "YOUR_API_KEY")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println("Response Status:", resp.Status)
}
require 'net/http'
require 'json'
uri = URI('https://api.5centscdn.com/v2/streams/scheduledplaylist/1001/playlist/42')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Post.new(uri)
request['Content-Type'] = 'application/json'
request['X-API-Key'] = 'YOUR_API_KEY'
request.body = '{
"name": "default",
"schedule": "instant",
"scheduletime": "0",
"loop": "1",
"repeatfor": 0,
"repeatintervaldays": 0,
"autorestart": "0",
"files": [
"/2.mp4"
]
}'
response = http.request(request)
puts response.body
{
"result": "success",
"message": "Playlist Updated"
}
/streams/scheduledplaylist/{streamid}/playlist/{playlistid}Target server for requests. Edit to use your own host.
API key (sent in header)
Stream ID
Playlist ID
The media type of the request body
Friendly name for this resource.
Schedule type. Values: instant, scheduleontime, scheduleondatetime.
Time or datetime for scheduling. Use HH:MM for time, YYYY-MM-DD HH:MM:SS for datetime.
Loop playback. Y means loop continuously, N means play once.
Number of times to repeat. 0 means no repeat.
Interval in days between repeats.
Automatically restart the stream if it stops. 1 means enabled, 0 means disabled.
List of file paths for the playlist.
Request Preview
Response
Response will appear here after sending the request
Authentication
API Key for authentication. Provide your API key in the header.
Path Parameters
Body
Time or datetime for scheduling. Use HH:MM for time, YYYY-MM-DD HH:MM:SS for datetime.
0Automatically restart the stream if it stops. 1 means enabled, 0 means disabled.
0Responses
Status of the API response.
Human-readable message describing the result.