mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2026-01-10 14:11:40 +00:00
1012 B
1012 B
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| api | /sys/remount - HTTP API | docs-http-system-remount | The '/sys/remount' endpoint is used remount a mounted backend to a new endpoint. |
/sys/remount
The /sys/remount endpoint is used remount a mounted backend to a new endpoint.
Remount Backend
This endpoint remounts an already-mounted backend to a new mount point.
| Method | Path | Produces |
|---|---|---|
POST |
/sys/remount |
204 (empty body) |
Parameters
-
from(string: <required>)– Specifies the previous mount point. -
to(string: <required>)– Specifies the new destination mount point.
Sample Payload
{
"from": "secret",
"to": "new-secret"
}
Sample Request
$ curl \
--header "X-Vault-Token: ..." \
--request POST \
--data @payload.json \
https://vault.rocks/v1/sys/remount