Remove asset from playlist
Removed an asset or list of assets from a given playlist.
Path Parameters
- Type: stringplaylist
_id requiredPlaylist ID that is to be deleted.
Body
application/json
- Type: array string[]delete
_list requiredArray of video asset ids.
Responses
- application/json
- application/json
Request Example for delete/video/playlist/{playlist_id}/asset
curl 'https://api.gumlet.com/v1/video/playlist/{playlist_id}/asset' \
--request DELETE \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN' \
--data '{
"delete_list": [
"6508790783e4d606118467a3"
]
}'
{
"success": true
}
