Skip to main content

Get current media sync job

GET 

https://demo.frigate.video/api/media/sync/current

Retrieve the current running media sync job, if any. Returns the job details or null when no job is active.

Responses​

Successful Response

import http.client

conn = http.client.HTTPSConnection("demo.frigate.video")
payload = ''
headers = {}
conn.request("GET", "/api/media/sync/current", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
Request Collapse all
Base URL
https://demo.frigate.video/api
ResponseClear

Click the Send API Request button above and see the response here!