# Manually Sync Series

The series will be updated periodically (within minutes of a change) and this service call, in general, will not need to be called. However, you may have a series updated by calling this service.

Simply provide the series id or series slug to the service via an authorized HTTP PUT and it will start the process of updating the series from new data in the RSS feed.

# Sync Series Request

PUT https://api.backtracks.fm/v1/proxy/<series_id>/sync HTTP/1.1
Accept: application/json
Authorization: JWT <your backtracks access token>...

# Sync Series Response

HTTP/1.1 200 OK
Location: https://api.backtracks.fm/v1/proxy/<series_id>/sync
Content-Type: application/hal+json; charset=utf-8

{
    "status": "processing",
    "_links": {
        "self": {
            "href": "https://api.backtracks.fm/v1/proxy/<series_id>/sync"
        }
    }
}