hello
i am trying to get episode totals for a retro tv library in emby
i can get overall totals for my libraries using this
rest:
- resource: http://192.168.2.50:8096/emby/Items/Counts?api_key=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
method: GET
scan_interval: 3600
sensor:- name: “Emby Movie Count”
value_template: ‘{{ value_json [“MovieCount”] }}’ - name: “Emby TV Series Count”
value_template: ‘{{ value_json [“SeriesCount”] }}’ - name: “Emby TV Episode Count”
value_template: ‘{{ value_json [“EpisodeCount”] }}’ - name: “Emby Album Count”
value_template: ‘{{ value_json [“AlbumCount”] }}’ - name: “Emby Song Count”
value_template: ‘{{ value_json [“SongCount”] }}’
- name: “Emby Movie Count”
is there a way to get totals just for 1 library
hoping some one can help
thanks