APIPlaylist
extends Omit<SimplifiedPlaylist, "tracks">
The structure containing the brief details of the Spotify Playlist.
Properties:
| Name | Type | Description |
|---|---|---|
| collaborative | boolean | True if the owner allows other users to modify the playlist. |
| description | "null" | string | The playlist description. Only returned for modified, verified playlists, otherwise null. |
| external_urls | ExternalUrl | Known external URLs for this playlist. |
| followers | Followers | Information about the followers of the playlist. |
| href | string | A link to the Web API endpoint providing full details of the playlist. |
| id | string | The Spotify ID for the playlist. |
| images | Image[] | Images for the playlist. The array may be empty or contain up to three images. |
| name | string | The name of the playlist. |
| owner | PublicUser | The user who owns the playlist. |
| public | "null" | boolean | The playlist’s public/private status: true the playlist is public, false the playlist is private, null the playlist status is not relevant. |
| snapshot_id | string | The version identifier for the current playlist. Can be supplied in other requests to target a specific playlist version |
| tracks | PlaylistTrack[] | Information about the tracks of the playlist. Note, a track object may be null. This can happen if a track is no longer available. |
| type | SpotifyType | The object type: “playlist” |
| uri | string | The Spotify URI for the playlist. |