modify_playlist_details
Update Spotify playlist details, including name, description, and visibility, using the playlist ID to manage and customize your music collections.
Instructions
Modify playlist details.
Args:
playlist_id: Playlist ID
name: New playlist name (optional)
description: New playlist description (optional)
public: Whether playlist should be public (optional)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
name | No | ||
playlist_id | Yes | ||
public | No |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
},
"playlist_id": {
"title": "Playlist Id",
"type": "string"
},
"public": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Public"
}
},
"required": [
"playlist_id"
],
"title": "modify_playlist_detailsArguments",
"type": "object"
}