update_playlist
Modify an existing Spotify playlist by updating its name, description, public/private status, or track list using the playlist ID and desired changes.
Instructions
Update an existing Spotify playlist's details and/or tracks.
Args:
playlist_id: The Spotify ID of the playlist to update
name: New name for the playlist (optional)
track_uris: New list of track URIs to replace the playlist's tracks (optional)
description: New description for the playlist (optional)
public: New public/private status for the playlist (optional)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
name | No | ||
playlist_id | Yes | ||
public | No | ||
track_uris | No |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"default": null,
"title": "Description",
"type": "string"
},
"name": {
"default": null,
"title": "Name",
"type": "string"
},
"playlist_id": {
"title": "Playlist Id",
"type": "string"
},
"public": {
"default": null,
"title": "Public",
"type": "boolean"
},
"track_uris": {
"default": null,
"items": {
"type": "string"
},
"title": "Track Uris",
"type": "array"
}
},
"required": [
"playlist_id"
],
"title": "update_playlistArguments",
"type": "object"
}