Announcements

Help Wizard

Step 1

NEXT STEP

FAQs

Please see below the most popular frequently asked questions.

Loading article...

Loading faqs...

VIEW ALL

Ongoing Issues

Please see below the current ongoing issues which are under investigation.

Loading issue...

Loading ongoing issues...

VIEW ALL

Who Me Too'd this topic

Playlist Description Update via API Fails Intermittently

In my application, I make updates to playlist descriptions using Spotify's API. Despite receiving 200 OK responses from the https://api.spotify.com/v1/playlists/{playlsitId} endpoint, I've found that the playlist description does not always update. In other words, making the same PUT API request multiple times results in a different outcome.

 

Any guidance on on this is greatly appreciated. Happy to provide logs for specific requests as needed.

 

Request:

PUT https://api.spotify.com/v1/playlists/{playlsitId}

data: {

  description: "test"

}

 

Response:

200 OK

data: ""

 

I'm including authN/authZ as documented here: https://developer.spotify.com/documentation/general/guides/authorization/

Who Me Too'd this topic