A list of all the playlists in the current project.
get_playlists(conn, limit = 100)
gor connection structure, create it using platform_connect
Maximum number of results (default: 100)
List of playlists
if (FALSE) {
api_key <- Sys.getenv("GOR_API_KEY")
project <- Sys.getenv("GOR_PROJECT")
conn <- platform_connect(api_key, project)
playlists <- get_playlists(conn)
}