2025-03-21, 06:25 PM
(This post was last modified: 2025-03-22, 05:38 PM by Stubbie. Edited 1 time in total.)
Hi, I am trying to synchronize playlists in Jellyfin with Music Assistant (a Home Assistant add-on).
"Native" Jellyfin playlist sync fine, but playlists from m3u files either sync empty, or don't sync at all, seemingly depending on how the paths inside are formed.
Anyway, I was curious to see what Jellyfin transmits over the API, but cannot seem to get the GET /Playlists/{playlistId} to work. Using Bruno (an API explorer) I get an 404/"Error processing request." error.
These are my steps:
- GET http://172.16.XXX.XXX:8096/Users to get the user Id
- GET http://172.16.XXX.XXX:8096/Users/<userId...istsFolder to get the Id of the Playlist library
- GET http://172.16.XXX.XXX:8096/Users/<userId...stFolderId> to get a list of playlists. The returned json:
Finally, I attempt to have a peek inside the playlist, but this GET call fails:
- http://172.16.XXX.XXX:8096/Playlists/adf...5217/Items
Probably something stupid... any ideas?
I am on Jellyfin 10.10.6.
No error messages in the log.
"Native" Jellyfin playlist sync fine, but playlists from m3u files either sync empty, or don't sync at all, seemingly depending on how the paths inside are formed.
Anyway, I was curious to see what Jellyfin transmits over the API, but cannot seem to get the GET /Playlists/{playlistId} to work. Using Bruno (an API explorer) I get an 404/"Error processing request." error.
These are my steps:
- GET http://172.16.XXX.XXX:8096/Users to get the user Id
- GET http://172.16.XXX.XXX:8096/Users/<userId...istsFolder to get the Id of the Playlist library
- GET http://172.16.XXX.XXX:8096/Users/<userId...stFolderId> to get a list of playlists. The returned json:
Code:
{
"Items": [
{
"Name": "JF-NATIVE-TEST",
"ServerId": "db2bc2f8a74649089ee7bf18b3af2023",
"Id": "1710350a4974e666176baabd410b3339",
"ChannelId": null,
"RunTimeTicks": 29178514270,
"IsFolder": true,
"Type": "Playlist",
"UserData": {
"PlaybackPositionTicks": 0,
"PlayCount": 0,
"IsFavorite": false,
"Played": false,
"Key": "1710350a-4974-e666-176b-aabd410b3339",
"ItemId": "00000000000000000000000000000000"
},
"ChildCount": 11,
"ImageTags": {
"Primary": "fafc487dd1790326e4d67dbde32db8c1"
},
"BackdropImageTags": [],
"ImageBlurHashes": {
"Primary": {
"fafc487dd1790326e4d67dbde32db8c1": "eaNu-ZoffQt7J7?Hj[fQfks:fQfQfQfQfQ~Wj[fQkC%2Ioj[fQofoL"
}
},
"LocationType": "FileSystem",
"MediaType": "Audio"
},
Finally, I attempt to have a peek inside the playlist, but this GET call fails:
- http://172.16.XXX.XXX:8096/Playlists/adf...5217/Items
Probably something stupid... any ideas?
I am on Jellyfin 10.10.6.
No error messages in the log.