createPlaylist
Generate a new Spotify playlist by specifying its name, description, and visibility settings.
Instructions
Create a new playlist on Spotify
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | The description of the playlist | |
name | Yes | The name of the playlist | |
public | No | Whether the playlist should be public |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"description": {
"description": "The description of the playlist",
"type": "string"
},
"name": {
"description": "The name of the playlist",
"type": "string"
},
"public": {
"description": "Whether the playlist should be public",
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
}