Skip to content
DocumentationAPI Reference

Save Shows for Current User

client.Me.Shows.Save(ctx, body) error
PUT/me/shows

Save one or more shows to current Spotify user's library.

ParametersExpand Collapse
body MeShowSaveParams
IDs param.Field[[]string]optional

A JSON array of the Spotify IDs.
A maximum of 50 items can be specified in one request. Note: if the ids parameter is present in the query string, any IDs listed here in the body will be ignored.

Published param.Field[bool]optional

The playlist's public/private status (if it should be added to the user's profile or not): true the playlist will be public, false the playlist will be private, null the playlist status is not relevant. For more about public/private status, see Working with Playlists

Save Shows for Current User

package main

import (
  "context"

  "github.com/cjavdev/spotted-go"
  "github.com/cjavdev/spotted-go/option"
)

func main() {
  client := spotted.NewClient(
    option.WithAccessToken("My Access Token"),
  )
  err := client.Me.Shows.Save(context.TODO(), spotted.MeShowSaveParams{

  })
  if err != nil {
    panic(err.Error())
  }
}
Returns Examples