Remove asset from playlist

Removed an asset or list of assets from a given playlist.

Path Parameters
  • playlist_id
    Type: string
    required

    Playlist ID that is to be deleted.

Body
application/json
  • delete_list
    Type: array string[]
    required

    Array 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
}