youtube
youtube_add_playlist_item
Add a video to a playlist. Optionally specify position (0-based). Requires OAuth credentials (CLIENT_ID + CLIENT_SECRET + REFRESH_TOKEN). Costs 50 quota units.
Remote node2flow/youtube
Other tools also called youtube_add_playlist_item?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"position": {
"type": "number",
"description": "Position in the playlist (0-based, optional — appends to end if not specified)"
},
"video_id": {
"type": "string",
"description": "Video ID to add"
},
"playlist_id": {
"type": "string",
"description": "Playlist ID to add the video to"
}
}
}