Detail Seal Status
This API returns the current seal status of the system, including whether the system is sealed and the number of key shares required to unseal it.
Endpoint Details
| URL | /v1/sys/seal-status |
| Method | GET |
| Authorization | Bearer Token |
Request Headers
| Header | Type | Description |
|---|---|---|
| Content-Type | String | Must be application/json |
Response
Here is an example response after the request has been successfully processed:
Response
{
"sealed": true,
"threshold": 3
}
Field Descriptions
| Field | Type | Description |
|---|---|---|
| sealed | Boolean | Indicates whether the system is currently sealed (locked) |
| threshold | Integer | Number of key shares required to unseal the system |
info
- A valid Bearer Token is required to access this endpoint.
- The
sealedfield appears with a value oftruewhen the system is locked. - The
thresholdis the number of key shares that must be submitted to unseal the system, configured during the initial setup. - While the system is sealed, system operations are unavailable until it is unsealed.