Documentation preview. These pages target Registryctl v0.15.0, which is not published yet. Public download commands will not work until that release exists. For runnable released instructions, use v0.13.0.
Report unsupported runtime reload
POST
/admin/v1/reload
const url = 'https://example.com/admin/v1/reload';const options = {method: 'POST', headers: {'X-Api-Key': '<X-Api-Key>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/admin/v1/reload \ --header 'X-Api-Key: <X-Api-Key>'Standalone mode does not support runtime configuration reload. Operators should call /admin/v1/capabilities before invoking product-specific reload operations.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Missing or invalid credential
Media typeapplication/problem+json
object
code
required
string
detail
required
string
request_id
required
string
status
required
integer format: int32
title
required
string
type
required
string format: uri
key
additional properties
any
Example
{ "code": "auth.missing_credential", "detail": "missing authentication credential", "request_id": "01J00000000000000000000000", "status": 401, "title": "Missing credential", "type": "https://id.registrystack.org/problems/registry-notary/auth/missing_credential"}Caller lacks registry_notary:admin scope
Media typeapplication/problem+json
object
code
required
string
detail
required
string
request_id
required
string
status
required
integer format: int32
title
required
string
type
required
string format: uri
key
additional properties
any
Example
{ "code": "auth.scope_denied", "detail": "missing required scope", "request_id": "01J00000000000000000000000", "status": 403, "title": "Scope denied", "type": "https://id.registrystack.org/problems/registry-notary/auth/scope_denied"}Runtime configuration reload is not supported
Media typeapplication/problem+json
object
code
required
string
detail
required
string
request_id
required
string
status
required
integer format: int32
title
required
string
type
required
string format: uri
key
additional properties
any
Example
{ "code": "registry.admin.capability.not_supported", "detail": "registry-notary standalone runtime does not support reload", "message": "registry-notary standalone runtime does not support reload", "request_id": "01J00000000000000000000000", "schema": "registry.admin.error.v1", "status": 501, "title": "Admin capability not supported", "type": "https://id.registrystack.org/problems/registry-notary/registry/admin/capability/not_supported"}