Skip to main content

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
MethodGET
AuthorizationBearer Token

Request Headers

HeaderTypeDescription
Content-TypeStringMust be application/json

Response

Here is an example response after the request has been successfully processed:

Response
{
"sealed": true,
"threshold": 3
}

Field Descriptions

FieldTypeDescription
sealedBooleanIndicates whether the system is currently sealed (locked)
thresholdIntegerNumber of key shares required to unseal the system

info
  • A valid Bearer Token is required to access this endpoint.
  • The sealed field appears with a value of true when the system is locked.
  • The threshold is 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.