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.overlays.delete(
overlay_id=0,
stream_id=0,
)
Copy
Ask AI
This response has no body data.
Overlays
Delete an overlay
DELETE
/
streaming
/
streams
/
{stream_id}
/
overlays
/
{overlay_id}
Python
Copy
Ask AI
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.overlays.delete(
overlay_id=0,
stream_id=0,
)