open-vault/website/source/docs/http/system/remount.html.md
Seth Vargo 19b2b049c3
Redo docs for system backend
This commit updates the API documentation for the system backend to
break things apart on a per-page basis and provide specific examples.
This pattern will give more flexibility for future documentation as
well.
2017-03-16 09:46:49 -07:00

1,013 B
Raw Blame History

layout page_title sidebar_current description
http /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