The 0.1.0 API defines the foundation system endpoints. The secret-storage
operations are intentionally not implemented until later releases.
Returns process health and foundation seal state.
curl -s http://127.0.0.1:8200/v1/sys/healthExample response:
{
"initialized": false,
"sealed": true
}Returns initialization and seal progress.
curl -s http://127.0.0.1:8200/v1/sys/seal-statusExample response:
{
"initialized": false,
"sealed": true,
"threshold": 0,
"progress": 0
}Returns the Lykilheim version.
curl -s http://127.0.0.1:8200/v1/sys/versionExample response:
{
"version": "0.1.0"
}Defined in 0.1.0, implemented in 0.2.0.
curl -s -X POST http://127.0.0.1:8200/v1/sys/initExample 0.1.0 response:
{
"code": "not_implemented",
"message": "this endpoint is not available in this release"
}Defined in 0.1.0, implemented in 0.2.0.
curl -s -X POST http://127.0.0.1:8200/v1/sys/unsealDefined in 0.1.0, implemented in 0.2.0.
curl -s -X POST http://127.0.0.1:8200/v1/sys/sealErrors return a stable JSON object:
{
"code": "not_implemented",
"message": "this endpoint is not available in this release"
}