v1

latestOpenAPI 3.1.02026-07-2416666272.6 KB
Playlists

Create new playlist

Creates a new video playlist for the authenticated user

post/playlists

Request body

namestring required
descriptionstring
access_type'public' | 'private' | 'anyone_with_password' required
passwordstring

Required when access_type is anyone_with_password

hide_viewsboolean
creator_namestring required
image_idstring uuid nullable

Example request

{
  "name": "My Playlist",
  "description": "A collection of tutorial videos",
  "access_type": "public",
  "password": "secret123",
  "creator_name": "John Doe",
  "external_button": {
    "size": "medium",
    "text": "Visit Website",
    "url": "https://example.com"
  }
}

Response

Playlist created successfully

messagestring

Example response

{
  "data": {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "name": "My Playlist"
  },
  "message": "Created"
}