Im trying with this code:
$playlistId = "YOUR_PLAYLIST_ID"; // Replace with your actual Playlist ID
$playlistItem = new Google\Service\YouTube\PlaylistItem();
$playlistItemSnippet = new Google\Service\YouTube\PlaylistItemSnippet();
$playlistItemSnippet->setPlaylistId($playlistId);
$playlistItemSnippet->setResourceId(new Google\Service\YouTube\ResourceId([
'kind' => 'youtube#video',
'videoId' => $videoId
]));
$playlistItem->setSnippet($playlistItemSnippet);
$response = $youtube->playlistItems->insert('snippet', $playlistItem);
but the video doesnt get the playlist, there is not error nor exception, and response is a Guzzle typed.