import osfrom gcore import Gcoreclient = Gcore( api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted)client.streaming.videos.subtitles.delete( id=0, video_id=0,)
Copy
Ask AI
{ "status": 404, "error": "Not Found. Entity you are looking for was not found, please check the initial parameters"}
Subtitles
Delete subtitle
Delete specified video subtitle
DELETE
/
streaming
/
videos
/
{video_id}
/
subtitles
/
{id}
Python
Copy
Ask AI
import osfrom gcore import Gcoreclient = Gcore( api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted)client.streaming.videos.subtitles.delete( id=0, video_id=0,)
Copy
Ask AI
{ "status": 404, "error": "Not Found. Entity you are looking for was not found, please check the initial parameters"}