Delete playlist
documentedDelete a playlist.
DELETE /playlists/{playlist_id}Playlistsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
Note: The public SoundCloud API documentation does not document a DELETE /playlists/{playlist_id} endpoint. The API docs show playlist operations via GET and PUT at https://api.soundcloud.com/playlists/{id}, and the Help Center indicates playlist deletion is a UI action, not an API call. See sources: https://developers.soundcloud.com/docs/api (playlist GET/PUT examples) and the Help Center entry on deleting playlists. ([developers.soundcloud.com](https://developers.soundcloud.com/docs/api?utm_source=openai))
npx -y keychains@latest curl "https://api.soundcloud.com/playlists/{{$playlist_id}}" \
-X PUT \
-H "Accept: application/json; charset=utf-8" \
-H "Content-Type: application/json" \
-H "Authorization: OAuth {{OAUTH2_ACCESS_TOKEN}}" \
-d '{"playlist": {"tracks": []}}'