You’re using the PMS owner’s Plex token, aren’t you?
Is the endpoint you’re trying to use
a) to reorder the library’s recommended hub (or other hubs within the library) … or ….
b) to reorder things on the user’s general home screen?
Did you try to get content from the id’s you’re using? In your XML manage GET request, I see these with “…” while your CURL Post Request is not using these “…” … do you get an error if using encoded quotes?
Maybe you want to create and implant a new hub instead of trying to move a standard one?
Maybe try to reorder the home screen with an unpin all / re-pin in specific order strategy?
I’ve not seen a working exampe of code for moving hubs yet (but I would also be interested in getting more info here).
But while the documentation of this only talks about URL query parameters which you offered, the example on the right shows to have a JSON structure as a response. I think, a developer should take a look at this if you don’t get such a response.
{
"MediaContainer": {
"size": 8,
"Hub": [
{
"identifier": "movie.recentlyreleased",
"title": "Recently Released Movies",
"recommendationsVisibility": "all",
"homeVisibility": "none",
"promotedToRecommended": true,
"promotedToOwnHome": false,
"promotedToSharedHome": false
},
{
"identifier": "movie.recentlyadded",
"title": "Recently Added Movies",
"recommendationsVisibility": "all",
"homeVisibility": "all",
"promotedToRecommended": true,
"promotedToOwnHome": true,
"promotedToSharedHome": true
},
{
"identifier": "recent.library.playlists",
"title": "Library Playlists",
"recommendationsVisibility": "all",
"homeVisibility": "none",
"promotedToRecommended": true,
"promotedToOwnHome": false,
"promotedToSharedHome": false
},
{
"identifier": "movie.genre",
"title": "Top Movies in (Genre)",
"recommendationsVisibility": "all",
"homeVisibility": "none",
"promotedToRecommended": true,
"promotedToOwnHome": false,
"promotedToSharedHome": false
},
{
"identifier": "movie.by.actor.or.director",
"title": "Top Movies by (Actor or Director)",
"recommendationsVisibility": "all",
"homeVisibility": "none",
"promotedToRecommended": true,
"promotedToOwnHome": false,
"promotedToSharedHome": false
},
{
"identifier": "movie.topunwatched",
"title": "Top Unplayed Movies",
"recommendationsVisibility": "all",
"homeVisibility": "none",
"promotedToRecommended": true,
"promotedToOwnHome": false,
"promotedToSharedHome": false
},
{
"identifier": "movie.curated",
"title": "Seasonal Movies",
"recommendationsVisibility": "all",
"homeVisibility": "all",
"promotedToRecommended": true,
"promotedToOwnHome": true,
"promotedToSharedHome": true
},
{
"identifier": "movie.recentlyviewed",
"title": "Recently Played Movies",
"recommendationsVisibility": "all",
"homeVisibility": "none",
"promotedToRecommended": true,
"promotedToOwnHome": false,
"promotedToSharedHome": false
}
]
}
}