False Positive
PUThttps://demo.frigate.video/api/events/:event_id/false_positive
False Positive
Request​
Path Parameters
event_id Event Idrequired
Responses​
- 200
- 422
Successful Response
- application/json
- Schema
- Example (auto)
Schema
successSuccess (boolean)required
plus_idPlus Id (string)required
{
  "success": true,
  "plus_id": "string"
}
Validation Error
- application/json
- Schema
- Example (auto)
Schema
detail object[]
{
  "detail": [
    {
      "loc": [
        "string",
        0
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}
- python
- nodejs
- javascript
- curl
- rust
- HTTP.CLIENT
- REQUESTS
import http.client
conn = http.client.HTTPSConnection("demo.frigate.video")
payload = ''
headers = {
  'Accept': 'application/json'
}
conn.request("PUT", "/api/events/:event_id/false_positive", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
ResponseClear