Skip to main content

Export Rename

PATCH 

https://demo.frigate.video/api/export/:event_id/:new_name

Export Rename

Request

Path Parameters

    event_id Event Idrequired
    new_name New Namerequired

Responses

Successful Response

Schema
import http.client

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

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