Jump to content

Recommended Posts

sidkipper
Posted

Whenever I query the LiveTv/Recordings/Series endpoint I get no results, have tried supplying UserId or SeriesId as a parameter - what's required to get results back from this endpoint? 

Saw that UserId is required for LiveTv/Recordings, and can get results back from that, but would prefer to work with Series rather than individual Recordings if possible.

$res = Invoke-RestMethod -Uri "http://$url/LiveTv/Recordings/Series?UserId=$userId&api_key=$embyToken"
$res.Items.count
0
$res = Invoke-RestMethod -Uri "http://$url/LiveTv/Recordings?UserId=$userId&api_key=$embyToken"
$res.Items.count
556

 

Posted

Hi, does the recordings tab under Live TV in the web app show data for you?

sidkipper
Posted

Yes the recordings are visible via the Live TV Recordings tab

Posted

OK. The easiest way to learn would be to open the browser debugger and monitor the network request after clicking into the Recordings tab.

sidkipper
Posted

Thanks for the pointer to use browser dev view.

Couldn't find any examples of the /LiveTv/Recordings/Series endpoint being used, but can get Series data back using /LiveTv/SeriesTimers, which should give me enough to be able to manage the space used by my family recording too much and filling the storage up.

  • Thanks 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...