Spotify Web API v0.1.0 Spotify.Playlists.PlaylistFull View Source

A full Playlist object.

KeyValue Description
collaborativetrue if the owner allows other users to modify the playlist.
descriptionThe playlist description. Only returned for modified, verified playlists, otherwise null.
external_urlsKnown external URLs for this playlist.
followersInformation about the followers of the playlist.
hrefA link to the Web API endpoint providing full details of the playlist.
idThe Spotify ID for the playlist.
imagesImages for the playlist. The array may be empty or contain up to three images. The images are returned by size in descending order. See Working with Playlists.Note: If returned, the source URL for the image ( url ) is temporary and will expire in less than a day.
nameThe name of the playlist.
ownerThe user who owns the playlist
publicThe playlist’s public/private status: true the playlist is public, false the playlist is private, null the playlist status is not relevant. For more about public/private status, see Working with Playlists.
snapshot_idThe version identifier for the current playlist. Can be supplied in other requests to target a specific playlist version: see Remove tracks from a playlist
tracksInformation about the tracks of the playlist.
typeThe object type: “playlist”
uriThe Spotify URI for the playlist.

Link to this section Summary

Link to this section Types

Link to this type t() View Source
t() :: %Spotify.Playlists.PlaylistFull{collaborative: boolean(), description: String.t(), external_urls: Spotify.ExternalUrls.t(), followers: Spotify.Followers.t(), href: String.t(), id: String.t(), images: [Spotify.Image.t()], name: String.t(), owner: Spotify.Users.UserPublic.t(), public: boolean() | nil, snapshot_id: String.t(), tracks: Spotify.Pagings.Paging.t(Spotify.Playlists.PlaylistTrack.t()), type: String.t(), uri: String.t()}