diff --git a/website/source/api/system/seal-status.html.md b/website/source/api/system/seal-status.html.md index d0bc7e64016e..bf5fd0c62680 100644 --- a/website/source/api/system/seal-status.html.md +++ b/website/source/api/system/seal-status.html.md @@ -32,11 +32,13 @@ The "t" parameter is the threshold, and "n" is the number of shares. ```json { + "type": "shamir", "sealed": true, "t": 3, "n": 5, "progress": 2, - "version": "0.6.2" + "nonce": "", + "version": "0.9.0" } ``` @@ -44,12 +46,14 @@ Sample response when Vault is unsealed. ```json { + "type": "shamir", "sealed": false, "t": 3, "n": 5, "progress": 0, - "version": "0.6.2", + "version": "0.9.0", "cluster_name": "vault-cluster-d6ec3c7f", - "cluster_id": "3e8b3fec-3749-e056-ba41-b62a63b997e8" + "cluster_id": "3e8b3fec-3749-e056-ba41-b62a63b997e8", + "nonce": "ef05d55d-4d2c-c594-a5e8-55bc88604c24" } ```