Tautulli

Setup Tautulli notification agent for use with shinkro

This has the limitation of not being able to update ratings.

If you do not already have Tautulli setup, set it up using the official documentation here.

Webhook Setup for shinkro:

  • Go to Settings

  • Click on Notification Agents

  • Next, click on Add a new notification agent

  • Choose Webhook from the list

Webhook Settings

Configuration

Webhook URL:

Figure out the URL to use according to the way you have setup shinkro:

shinkro URL

Webhook Method: POST

Triggers: Watched

Conditions: Leave default.

Data:

Only need to enter data for Watched. JSON Headers: Leave empty

JSON Data:

Copy paste the json given below:

{
    "Account": {
        "title": "{username}"
    },
    "event": "media.scrobble",
    "Metadata": {
        "title": "{title}",
        "type": "{media_type}",
        "parentIndex": "{season_num}",
        "index": "{episode_num}",
        "guid": "{guid}",
        "Guid": [
            {
                "id": "imdb://{imdb_id}"
            },
            {
                "id": "tmdb://{themoviedb_id}"
            },
            {
                "id": "tvdb://{thetvdb_id}"
            }
        ],
        "grandparentKey": "/library/metadata/{grandparent_rating_key}",
        "grandparentTitle": "<episode>{show_name}</episode><movie>{title}</movie>",
        "librarySectionTitle": "{library_name}"
    }
}

Click on Save.

Last updated