Add Ui Plugin
Creates a new UI extension and sets the provided plugin metadata for it.
Request
URI
POST
https://{api_host}/cloudapi/extensions/ui
COPY
Request Body
UiPluginMetadata of type(s) application/json
Optional
{
"pluginName": "string",
"vendor": "string",
"description": "string",
"version": "string",
"license": "string",
"link": "string",
"tenant_scoped": false,
"provider_scoped": false,
"enabled": false
}
string
pluginName
Required
pluginName
string
vendor
Required
vendor
string
description
Optional
description
string
version
Required
version
string
license
Required
license
string
link
Required
link
boolean
tenant_scoped
Optional
tenant_scoped
boolean
provider_scoped
Optional
provider_scoped
boolean
enabled
Optional
enabled
Responses
201
Created
Returns UiPluginMetadataResponse of type(s) application/json;version=38.0
This response body class contains all of the following: UiPluginMetadata , UploadMetadataResponse
{
"pluginName": "string",
"vendor": "string",
"description": "string",
"version": "string",
"license": "string",
"link": "string",
"tenant_scoped": false,
"provider_scoped": false,
"enabled": false,
"id": "string",
"plugin_status": "string",
"resourcePath": "string"
}