How to Remove Items from the NowPlayingQueue Using API? - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: General Questions (https://forum.jellyfin.org/f-general-questions) +--- Thread: How to Remove Items from the NowPlayingQueue Using API? (/t-how-to-remove-items-from-the-nowplayingqueue-using-api) |
How to Remove Items from the NowPlayingQueue Using API? - 10rounds - 2024-05-04 I've been successfully adding items to the queue using the /Sessions/{sessionId}/Playing endpoint with playCommand=PlayNext. However, I'm looking for a way to remove specific items from the NowPlayingQueue using the API. I've checked the documentation and tried several approaches, but haven't yet figured out how. Has anyone managed this, or can anyone provide guidance? RE: How to Remove Items from the NowPlayingQueue Using API? - niels - 2024-05-04 Queues are entirely implemented on the client side. While it possible to ask a client to add something to the queue with that specific endpoint, it is not possible to modify that queue afterwards. RE: How to Remove Items from the NowPlayingQueue Using API? - 10rounds - 2024-05-04 Thank you for your response! I noticed that the Jellyfin Web client allows for modifications to the queue, such as reordering and removal. Since this functionality is available on the web interface, I wonder if it might be possible to achieve similar actions through the API. Could there be a way to replicate these interactions via API commands? I appreciate any further insights or suggestions! RE: How to Remove Items from the NowPlayingQueue Using API? - niels - 2024-05-05 Not currently possible no RE: How to Remove Items from the NowPlayingQueue Using API? - 10rounds - 2024-05-05 Good to know, thank you. |