We have a spreadsheet containing the metadata for a lot of videos (1-2k). How can we use the Plex API to update the metadata for these videos?
What endpoints should we create requests for?
In the end it will be a Node.js script, so using Node.js modules would make it easier. Using the plex-api module (https://www.npmjs.com/package/plex-api) we can GET some data from the Plex server. How can we POST/PUT our metadata for each video, individually?
Thanks!