Managing Collections
Organize your videos into collections
Collections help you organize related videos together. Use them for course modules, event recordings, product demos, or any grouping that makes sense for your content.
Creating a Collection
- Go to Collections in the sidebar
- Click New Collection
- Enter a name and optional description
- Click Create
Adding Videos to a Collection
From the Collection Page
- Open the collection
- Click Add Videos
- Select videos from your library
- Click Add Selected
From a Video's Settings
- Open the video
- Go to the Settings tab
- Under Collections, click Add to Collection
- Select the collection(s)
Reordering Videos
Within a collection, you can drag and drop videos to reorder them. The order is preserved when displaying the collection.
Collection Settings
Each collection has settings for:
- Name - Display name for the collection
- Description - Optional description text
- Visibility - Public, private, or unlisted
Using Collections via API
You can manage collections programmatically:
# List all collections
curl -X GET "https://app.boldvideo.io/api/v1/collections" \
-H "X-API-Key: YOUR_API_KEY"
# Get videos in a collection
curl -X GET "https://app.boldvideo.io/api/v1/collections/{id}/videos" \
-H "X-API-Key: YOUR_API_KEY"See the API Reference for full collection endpoint documentation.