Skip to main content
POST
/
api
/
v1
/
plugins
/
install
/
marketplace
Install from Marketplace
curl --request POST \
  --url http://localhost:5300/api/v1/plugins/install/marketplace \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "plugin_id": "<string>"
}
'
{
  "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>

Body

application/json
plugin_id
string

Plugin ID

Response

200 - application/json

Installation task created

code
integer
Example:

0

msg
string
Example:

"ok"

data
object