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

Path Parameters

name
string
required

Plugin name

Body

application/json

Update plugin request

enabled
boolean
config
object
path
string

Response

Plugin updated successfully

Plugin operation response

message
string
plugin
object

Plugin configuration