Skip to main content
POST
/
v1
/
playlists
/
{id}
/
videos
Add a video to a playlist
curl --request POST \
  --url https://api.tella.com/v1/playlists/{id}/videos \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "videoId": "vid_xyz789ghi012"
}
'
{
  "status": "ok"
}

Authorizations

Authorization
string
header
required

API key obtained from your Tella account settings

Path Parameters

id
string
required

Unique playlist identifier

Example:

"pl_abc123def456"

Body

application/json

Request body for adding a video to a playlist

videoId
string
required

ID of the video to add to the playlist

Example:

"vid_xyz789ghi012"

Response

Video successfully added to playlist

Standard success response for operations that don't return data

status
enum<string>
required

Operation status

Available options:
ok
Example:

"ok"