/video/playlist/{playlist_id}

Deletes this playlist.

Path Parameters
  • playlist_id
    Type: string
    required

    Playlist ID that is to be deleted.

Responses
  • 200
Request Example for delete/video/playlist/{playlist_id}
import Gumlet from '@gumlet/nodejs-sdk';

const client = new Gumlet({
  apiKey: process.env['API_KEY'], // defaults to the API_KEY env var
});

await client.videoPlaylists.delete('playlistId');
No Body