Skip to main content
DELETE
/
api
/
v1
/
plugins
/
{author}
/
{plugin_name}
Delete Plugin
curl --request DELETE \
  --url http://localhost:5300/api/v1/plugins/{author}/{plugin_name} \
  --header 'Authorization: Bearer <token>'
{
  "code": 0,
  "msg": "ok",
  "data": {
    "task_id": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Can be either a user JWT token or an API key. Example: Authorization: Bearer <token_or_key>

Path Parameters

author
string
required

Plugin author

plugin_name
string
required

Plugin name

Query Parameters

delete_data
boolean
default:false

Whether to delete plugin data

Response

200 - application/json

Deletion task created

code
integer
Example:

0

msg
string
Example:

"ok"

data
object