Tsarr Documentation - v2.11.0
    Preparing search index...

    Type Alias TorrentsAddTrackersPostData

    type TorrentsAddTrackersPostData = {
        body: { hash: string; urls: string };
        path?: never;
        query?: never;
        url: "/torrents/addTrackers";
    }
    Index

    Properties

    Properties

    body: { hash: string; urls: string }
    POST /api/v2/torrents/addTrackers HTTP/1.1
    User-Agent: Fiddler
    Host: 127.0.0.1
    Cookie: SID=your_sid
    Content-Type: application/x-www-form-urlencoded
    Content-Length: length

    hash=8c212779b4abde7c6bc608063a0d008b7e40ce32&urls=http://192.168.0.1/announce%0Audp://192.168.0.1:3333/dummyAnnounce

    This adds two trackers to torrent with hash 8c212779b4abde7c6bc608063a0d008b7e40ce32. Note %0A (aka LF newline) between trackers. Ampersand in tracker urls MUST be escaped.

    path?: never
    query?: never
    url: "/torrents/addTrackers"