Change Item's Name using the API - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Development (https://forum.jellyfin.org/f-development) +--- Forum: Server Development (https://forum.jellyfin.org/f-server-development) +--- Thread: Change Item's Name using the API (/t-change-item-s-name-using-the-api) |
Change Item's Name using the API - Facundo Batista - 2023-12-12 Hello! tl;dr: I cannot set the item's name, I get a 400. I'm getting an item from the SERVER/Items endpoint, if I print it I see:Code: {'BackdropImageTags': ['88c073d8ed4d352f1b9dc2a7fca2029b'], So I change the name and then hit update: Code: media["Name"] = "Groundhog Day" All I get is a 400 response, just "Error processing request." in the response text. The server logs are not providing more info: Code: [2023-12-12 10:16:23.299 -03:00] [ERR] Error processing request. URL "POST" "/Items/664d7ffdf0922c7eee0ea4f611481ae4". (I couldn't find a "source" in that endpoint parameters) Any clue what's going on? Thanks! RE: Change Item's Name using the API - tmsrxzar - 2023-12-12 my solution to such issues is using the developer panel on the browser then inspect the calls when i do it manually then duplicate into my own code, i am honestly not even sure where the api documentation is give it a try, it's best recommendation i can give |