Install Plugin from GitHub
POST
/api/v1/plugins/install/github
Install plugin from GitHub Release
Authorizations
BearerAuth
Bearer token authentication. Can be either a user JWT token or an API key.
Example: Authorization: Bearer <token_or_key>
TypeHTTP (bearer)
Request Body
application/json
JSON
{
"asset_url": "string",
"owner": "string",
"repo": "string",
"release_tag": "string"
}
Responses
Installation task created
application/json
JSON
{
"code": 0,
"msg": "ok",
"data": {
"task_id": "string"
}
}
