Skip to main content

Get media sync job status

GET 

https://demo.frigate.video/api/media/sync/status/:job_id

Get status and results for the specified media sync job id. Returns 200 with job details including results, or 404 if the job is not found.

Request​

Path Parameters

    job_id any

Responses​

Successful Response

import http.client

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

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