Skip to main content

Send To Plus

POST 

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

Send To Plus

Request

Path Parameters

    event_id Event Idrequired

Body

    include_annotationInclude Annotation (integer)
    Default value: 1

Responses

Successful Response

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

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

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