Skip to main content
POST
/
api
/
plugins
Create a new plugin
curl --request POST \
  --url http://localhost:8080/api/plugins \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "enabled": true,
  "config": {},
  "path": "<string>"
}
'
{
  "message": "<string>",
  "plugin": {
    "name": "<string>",
    "enabled": true,
    "config": {},
    "isCustom": true,
    "path": "<string>",
    "status": {
      "name": "<string>",
      "status": "active",
      "logs": [
        "<string>"
      ]
    }
  }
}

Body

application/json

Create plugin request

name
string
required
enabled
boolean
config
object
path
string

Response

Plugin created successfully

Plugin operation response

message
string
plugin
object

Plugin configuration