Skip to main content

Reprocess a license plate

PUT 

https://demo.frigate.video/api/lpr/reprocess

Reprocesses a license plate image to update the plate. Requires license plate recognition to be enabled in the configuration. The event_id must exist in the database. Returns a success message or an error if license plate recognition is not enabled or the event_id is invalid.

Request​

Query Parameters

    event_id Event Idrequired

Responses​

Successful Response

Schema
    import http.client

    conn = http.client.HTTPSConnection("demo.frigate.video")
    payload = ''
    headers = {
    'Accept': 'application/json'
    }
    conn.request("PUT", "/api/lpr/reprocess", payload, headers)
    res = conn.getresponse()
    data = res.read()
    print(data.decode("utf-8"))
    Request Collapse all
    Base URL
    https://demo.frigate.video/api
    Parameters
    — queryrequired
    ResponseClear

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