Remove User's Saved Audiobooks
me.audiobooks.remove(AudiobookRemoveParams**kwargs)
DELETE/me/audiobooks
Remove one or more audiobooks from the Spotify user's library.
Parameters
Remove User's Saved Audiobooks
import os
from spotted import Spotted
client = Spotted(
access_token=os.environ.get("SPOTIFY_ACCESS_TOKEN"), # This is the default and can be omitted
)
client.me.audiobooks.remove(
ids="18yVqkdbdRvS24c0Ilj2ci,1HGw3J3NxZO1TP1BTtVhpZ,7iHfbu1YPACw6oZPAFJtqe",
)