Update Playlist Item
youtube_update_playlist_itemUpdate a playlist item's position and video assignment in a YouTube playlist. Requires item ID, playlist ID, video ID, and new position.
Instructions
Update the position or video reference of an existing playlist item. All four arguments are required by the YouTube API.
Args
playlistItemId(string, required): The playlist item ID to update.playlistId(string, required): The playlist this item belongs to.videoId(string, required): The video ID for this item.position(integer ≥ 0, required): New zero-based position in the playlist.
Returns Confirmation Markdown + structured updated playlist item resource:
{
"playlistItemId": "...",
"playlistId": "PL...",
"videoId": "...",
"position": 2
}Examples
Move to position 0:
youtube_update_playlist_item({ playlistItemId: "...", playlistId: "PL...", videoId: "...", position: 0 })
Errors
404 → item not found.
403 → not your playlist.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| playlistItemId | Yes | Playlist item ID to update. | |
| playlistId | Yes | Playlist this item belongs to. | |
| videoId | Yes | Video ID for this playlist item. | |
| position | Yes | New zero-based position in the playlist. |