import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
client.streaming.streams.clear_dvr(
0,
)
This response has no body data.
Streams
Clear live stream DVR
PUT
/
streaming
/
streams
/
{stream_id}
/
dvr_cleanup
Python
import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
client.streaming.streams.clear_dvr(
0,
)