mirror of
https://github.com/hashicorp/vault.git
synced 2026-04-29 02:01:35 -04:00
544 B
544 B
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| http | HTTP API: /sys/seal-status | docs-http-seal-status | The '/sys/seal-status' endpoint is used to check the seal status of a Vault. |
/sys/seal-status
- Description
- Returns the seal status of the Vault.
<dt>Method</dt>
<dd>GET</dd>
<dt>Parameters</dt>
<dd>
None
</dd>
<dt>Returns</dt>
<dd>The "t" parameter is the threshold, and "n" is the number of shares.
{
"sealed": true,
"t": 3,
"n": 5,
"progress": 2
}
</dd>