Skip to main content
DELETE
/
streaming
/
videos
/
{video_id}
/
subtitles
/
{id}
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.videos.subtitles.delete(
    id=0,
    video_id=0,
)
{
  "status": 404,
  "error": "Not Found. Entity you are looking for was not found, please check the initial parameters"
}

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Path Parameters

id
integer
required

ID of a subtitle

video_id
integer
required

ID of a video

Response

"No content", subtitle deleted successfully