DeveloperAPI ReferencePluginsEvents
/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
Default
50Range
1 <= value <= 200offset?|
Default
0Range
0 <= valueResponse 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
}