A list of all the playlists in the current project.

get_playlists(conn, limit = 100)

Arguments

conn

gor connection structure, create it using platform_connect

limit

Maximum number of results (default: 100)

Value

List of playlists

Examples

if (FALSE) {
api_key <- Sys.getenv("GOR_API_KEY")
project <- Sys.getenv("GOR_PROJECT")
conn <- platform_connect(api_key, project)
playlists <- get_playlists(conn)
}