AviatoAviato
DeveloperAPI ReferencePluginsEvents

/api/plugins/events

GET
/api/plugins/events

Query Parameters

pluginId?string
severity?string
Value in"info" | "warning" | "error" | "critical"
category?string
Value in"startup" | "shutdown" | "runtime" | "health" | "rpc"
limit?integer
Default50
Range1 <= value <= 200
offset?|
Default0
Range0 <= value

Response Body

application/json

curl -X GET "https://example.com/api/plugins/events"
{
  "events": [
    {
      "id": 0,
      "pluginId": "string",
      "severity": "info",
      "category": "startup",
      "title": "string",
      "message": "string",
      "context": {
        "property1": null,
        "property2": null
      },
      "createdAt": "string"
    }
  ],
  "total": 0
}