1---
2layout: "api"
3page_title: "/sys/remount - HTTP API"
4sidebar_title: "<code>/sys/remount</code>"
5sidebar_current: "api-http-system-remount"
6description: |-
7  The '/sys/remount' endpoint is used remount a mounted backend to a new endpoint.
8---
9
10# `/sys/remount`
11
12The `/sys/remount` endpoint is used remount a mounted backend to a new endpoint.
13
14## Move Backend
15
16This endpoint moves an already-mounted backend to a new mount point.
17
18| Method   | Path                         |
19| :--------------------------- | :--------------------- |
20| `POST`   | `/sys/remount`               |
21
22### Parameters
23
24- `from` `(string: <required>)` – Specifies the previous mount point.
25
26- `to` `(string: <required>)` – Specifies the new destination mount point.
27
28### Sample Payload
29
30```json
31{
32  "from": "secret",
33  "to": "new-secret"
34}
35```
36
37### Sample Request
38
39```
40$ curl \
41    --header "X-Vault-Token: ..." \
42    --request POST \
43    --data @payload.json \
44    http://127.0.0.1:8200/v1/sys/remount
45```
46