Remove Playlist Item
youtube_remove_playlist_itemRemove a video from a YouTube playlist by providing its playlist item ID. Confirmation required to execute the irreversible deletion.
Instructions
Remove a video from a playlist (deletes the playlist item). This is irreversible.
Use youtube_list_playlist_items to find the playlistItemId.
Args
playlistItemId(string, required): The playlist item ID to remove.confirm(boolean, default false): Must betrueto execute the removal.
Returns Confirmation text on success.
Examples
youtube_remove_playlist_item({ playlistItemId: "...", confirm: true })
Errors
404 → item not found.
403 → not your playlist.
Not passing
confirm: true→ refused with instructions to re-call.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| playlistItemId | Yes | Playlist item ID to remove from its playlist. | |
| confirm | No | Must be true to confirm the irreversible removal. |