Playlists
Create Playlist
Creates a new playlist.
A maximum of 1000 videos can be added to a playlist (both Manual and Smart). There is no limit to the number of playlists that can be created. The videos that are initially loaded into a playlist in the player is determined by the type of playlist.
post/v1/accounts/{{account_id}}/playlists
Path parameters
account_idstring required
Video Cloud account ID.
Headers
Content-Typestring required
Content-Type: application/json
Authorizationstring required
Authorization: Bearer {access_token} - see Getting Access Tokens
Request body
Example request
{
"description": "My new sea playlist",
"name": "Sea Videos",
"type": "ACTIVATED_NEWEST_TO_OLDEST",
"limit": 20,
"search": "tags:birds"
}Response
Playlist created
Example response
{
"id": "5716873476001",
"account_id": "57838016001",
"created_at": "2018-01-23T12:55:29.674Z",
"description": "My new sea playlist",
"favorite": false,
"name": "Sea Videos",
"reference_id": null,
"type": "ACTIVATED_NEWEST_TO_OLDEST",
"updated_at": "2018-01-23T12:55:29.677Z",
"limit": 20,
"search": "+tags:\"birds\""
}