gumlet-video-playlist
List playlists in a workspace
gumlet video playlist list --workspace-id <id>
gumlet video playlist list --workspace-id <id> --output table
Create a playlist
gumlet video playlist create --workspace-id <id> --title "Best of 2026"
gumlet video playlist create --workspace-id <id> --title "Best of 2026" --description "Top videos of the year"
Update a playlist
All flags are optional — only supplied flags are updated.
gumlet video playlist update --playlist-id <id> --title "Renamed Playlist"
gumlet video playlist update --playlist-id <id> --description "Updated description"
gumlet video playlist update --playlist-id <id> --channel-visibility public
Get assets in a playlist
gumlet video playlist get-assets --playlist-id <id>
gumlet video playlist get-assets --playlist-id <id> --output table
Add assets to a playlist
# Add a single asset
gumlet video playlist add-asset --playlist-id <id> --asset-ids asset_abc
# Add multiple assets
gumlet video playlist add-asset --playlist-id <id> --asset-ids asset_1,asset_2,asset_3
# Add multiple assets with explicit positions
gumlet video playlist add-asset --playlist-id <id> --asset-ids asset_1,asset_2 --positions 1,2
When
--positionsis provided, the count must match the number of--asset-ids.
Remove assets from a playlist
gumlet video playlist remove-asset --playlist-id <id> --asset-ids asset_1,asset_2
Delete a playlist
gumlet video playlist delete --playlist-id <id>
Notes
--workspace-idis required forlistandcreate.--playlist-idis required for all other subcommands.- Use
--output tablefor a human-readable view.
More from gumlet/cli
gumlet-image-purge
Purge the Gumlet CDN cache for an image source subdomain using the Gumlet CLI. Use this skill when you need to invalidate cached images after updating source files — either purge the entire cache for a subdomain or target specific image URLs/paths. Requires the Gumlet CLI to be installed and authenticated via `gumlet login`.
2gumlet-video-asset
Manage Gumlet video assets using the Gumlet CLI. Use this skill to list assets in a workspace with optional filters, get full details of a single asset including playback and thumbnail URLs, or delete an asset permanently. Requires the Gumlet CLI to be installed and authenticated via `gumlet login`.
1gumlet-image-source
Manage Gumlet image sources using the Gumlet CLI. Use this skill to list all image sources, get details of a specific source, create a new image source connected to a storage backend (Amazon S3, GCS, web proxy, DigitalOcean Spaces, Wasabi, Azure, Cloudflare, Backblaze, etc.), update an existing source's configuration, or delete a source. Requires the Gumlet CLI to be installed and authenticated via `gumlet login`.
1gumlet-video-workspace
Manage Gumlet video workspaces using the Gumlet CLI. Use this skill to list all workspaces, get details of a specific workspace, create a new workspace, rename an existing workspace, or delete a workspace. Requires the Gumlet CLI to be installed and authenticated via `gumlet login`.
1gumlet-video-asset-upload
Upload a local video file to Gumlet as a new video asset using the Gumlet CLI. Use this skill when you need to upload a video file from the local filesystem to Gumlet for transcoding and delivery. The CLI handles the two-step process automatically: creating the upload session and streaming the file to the returned pre-signed URL. A real-time progress indicator is shown during upload. Requires the Gumlet CLI to be installed and authenticated via gumlet login.
1