df34412570
* new documentation website * ci job adjustment * update to latest version on downloads page * remove transition-period scripts * add netlify toml file * fix docs patch * fix ci config? * revert go.mod changes * a couple last markdown formatting fixes
47 lines
1.2 KiB
Plaintext
47 lines
1.2 KiB
Plaintext
---
|
||
layout: api
|
||
page_title: /sys/plugins/reload/backend - HTTP API
|
||
sidebar_title: <code>/sys/plugins/reload/backend</code>
|
||
description: The `/sys/plugins/reload/backend` endpoint is used to reload plugin backends.
|
||
---
|
||
|
||
# `/sys/plugins/reload/backend`
|
||
|
||
The `/sys/plugins/reload/backend` endpoint is used to reload mounted plugin
|
||
backends. Either the plugin name (`plugin`) or the desired plugin backend mounts
|
||
(`mounts`) must be provided, but not both. In the case that the plugin name is
|
||
provided, all mounted paths that use that plugin backend will be reloaded.
|
||
|
||
## Reload Plugins
|
||
|
||
This endpoint reloads mounted plugin backends.
|
||
|
||
| Method | Path - |
|
||
| :----- | :---------------------------- |
|
||
| `PUT` | `/sys/plugins/reload/backend` |
|
||
|
||
### Parameters
|
||
|
||
- `plugin` `(string: "")` – The name of the plugin to reload, as
|
||
registered in the plugin catalog.
|
||
|
||
- `mounts` `(array: [])` – Array or comma-separated string mount paths
|
||
of the plugin backends to reload.
|
||
|
||
### Sample Payload
|
||
|
||
```json
|
||
{
|
||
"plugin": "mock-plugin"
|
||
}
|
||
```
|
||
|
||
### Sample Request
|
||
|
||
```
|
||
$ curl \
|
||
--header "X-Vault-Token: ..." \
|
||
--request PUT
|
||
http://127.0.0.1:8200/v1/sys/plugins/reload/backend
|
||
```
|