delete_playlist
Remove a playlist from your Plex Media Server by specifying its unique playlist key. Ensures efficient playlist management through direct integration with Plex API.
Instructions
Delete a playlist from the Plex server.
Parameters: playlist_key: The key of the playlist to delete.
Returns: A success message if deletion is successful, or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
playlist_key | Yes |
Input Schema (JSON Schema)
{
"properties": {
"playlist_key": {
"title": "Playlist Key",
"type": "string"
}
},
"required": [
"playlist_key"
],
"title": "delete_playlistArguments",
"type": "object"
}