Skip to main content
DELETE
/
v1
/
playlists
/
{id}
/
videos
/
{videoId}
Remove a video from a playlist
curl --request DELETE \
  --url https://api.tella.com/v1/playlists/{id}/videos/{videoId} \
  --header 'Authorization: Bearer <token>'
{
  "status": "ok"
}

Documentation Index

Fetch the complete documentation index at: https://tella.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key obtained from your Tella account settings

Path Parameters

id
string
required

Unique playlist identifier

Example:

"pl_abc123def456"

videoId
string
required

Unique video identifier

Example:

"vid_xyz789ghi012"

Response

Video successfully removed from playlist

Standard success response for operations that don't return data

status
enum<string>
required

Operation status

Available options:
ok
Example:

"ok"