public void WhenIExecuteAPUTOnPlaylistDetailsOfAnExistingPlaylist()
        {
            IRestResponse response = RESTHelpers.PUTPlaylistWithAuthHeader(
                ConfigurationManager.AppSettings["SpotifyURL"].ToString(),
                ConfigurationManager.AppSettings["PlayListResource"].ToString(),
                ConfigurationManager.AppSettings["ModifyToken"],
                "PUTPlayListPublicJSON.json"
                );

            RESTHelpers.Is201CreatedResponse(response);

            ScenarioContext.Current.Add("PUTPlayListJSONResponse", response.Content);
        }