Call the UninstallKibanaPlugin to uninstall the Kibana plug-in.
Debugging
Request header
This operation uses common request parameters only. For more information, see Common parameters.
Request syntax
POST /openapi/instances/[InstanceId]/kibana-plugins/actions/uninstall HTTPS|HTTP
Request parameters
Parameter | Type | Required | Example | Description |
---|---|---|---|---|
InstanceId | String | Yes | es-cn-6ja1ro4jt000c**** |
The ID of the instance. |
clientToken | String | No | 5A2CFF0E-5718-45B5-9D4D-70B3FF**** |
A unique token generated by the client to guarantee the idempotency of the request. You can use the client to generate the value, but you must ensure that it is unique among different requests. The token can only contain ASCII characters and cannot exceed 64 characters in length. |
RequestBody
Enter the name of the Kibana plug-in in the RequestBody field. The format is ["pluginname1","pluginname2",…, "plugin_namen"]
. Example: ["bsearch_label","bsearch_querybuilder"]
.
Response parameters
Parameter | Type | Example | Description |
---|---|---|---|
RequestId | String | 5FFD9ED4-C2EC-4E89-B22B-1ACB6FE1D**** |
The ID of the request. |
Result | List | ["bsearch_querybuilder"] |
The returned result shows a list of uninstalled plug-ins. |
Examples
Sample requests
POST /openapi/instances/es-cn-6ja1ro4jt000c****/kibana-plugins/actions/uninstall HTTP/1.1
Common request parameters
["bsearch_label","bsearch_querybuilder"]
Sample success responses
JSON
format
{
"Result": [
"bsearch_querybuilder"
],
"RequestId": "D528727E-F512-4EE6-B46F-B9270D4E****",
"Headers": {}
}
Error codes
HttpCode | Error code | Error message | Description |
---|---|---|---|
400 | InstanceNotFound | The instanceId provided does not exist. | The error message returned because the specified instance cannot be found. Check the instance status. |
For a list of error codes, visit the API Error Center.