Skip to main content

Export Rename

PATCH 

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

Export Rename

Request​

Path Parameters

    event_id Event Idrequired

Bodyrequired

    nameFriendly name (string)required

    Possible values: <= 256 characters

Responses​

Successful Response

Schema
import http.client
import json

conn = http.client.HTTPSConnection("demo.frigate.video")
payload = json.dumps({
"name": "string"
})
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json'
}
conn.request("PATCH", "/api/export/:event_id/rename", 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
Body required
{
  "name": "string"
}
ResponseClear

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