Skip to main content

Set Description

POST 

https://demo.frigate.video/api/events/:event_id/description

Set Description

Request

Path Parameters

    event_id Event Idrequired

Bodyrequired

    description objectrequired
    anyOf
    string

Responses

Successful Response

Schema
    successSuccess (boolean)required
    messageMessage (string)required
import http.client
import json

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

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