Get media sync job status
GEThttps://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​
- 200
- 404
- 422
Successful Response
Not Found - Job not found
Validation Error
- python
- nodejs
- javascript
- curl
- rust
- HTTP.CLIENT
- REQUESTS
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"))
ResponseClear