My Question or Issue
I am trying to figure out how to remove the Playlist description via the API. I tried some combination that I thought it could:
Attempt #1
Request body
{
"description": ""
}
Result:
{
"error": {
"status": 400,
"message": "Attribute description is empty"
}
}
Attempt #2
Request body
{
"description": false
}
Results
{
"error": {
"status": 500,
"message": "Server error."
}
}
Am I missing something here? This is possible via the Spotify Windows app, however.