remove_tracks_from_playlist
Delete specific tracks from a Spotify playlist by providing the playlist ID and track URIs. Simplify playlist management using this tool.
Instructions
Remove tracks from a playlist.
Args:
playlist_id: Playlist ID
track_uris: List of track URIs to remove
Input Schema
Name | Required | Description | Default |
---|---|---|---|
playlist_id | Yes | ||
track_uris | Yes |
Input Schema (JSON Schema)
{
"properties": {
"playlist_id": {
"title": "Playlist Id",
"type": "string"
},
"track_uris": {
"items": {
"type": "string"
},
"title": "Track Uris",
"type": "array"
}
},
"required": [
"playlist_id",
"track_uris"
],
"title": "remove_tracks_from_playlistArguments",
"type": "object"
}