Skip to content
getgeolens.com

Validate Configuration

POST
/config-ops/validate/
curl --request POST \
--url https://example.com/api/config-ops/validate/ \
--header 'Authorization: Bearer <token>'

Validate connectivity to storage, cache, and all enabled OIDC providers.

Returns pass/fail with latency and error details for each service.

Successful Response

Media type application/json
ConnectivityResult

Aggregate connectivity validation result.

object
storage
required
ServiceProbeResult

Object storage probe result.

object
name
required
Name

Service name (e.g. ‘storage’, ‘cache’, ‘oidc:google’).

string
status
required
Status

Probe outcome.

string
Allowed values: ok error
latency_ms
required
Latency Ms

Round-trip latency in milliseconds.

number
error
Any of:
string
cache
required
ServiceProbeResult

Cache backend probe result.

object
name
required
Name

Service name (e.g. ‘storage’, ‘cache’, ‘oidc:google’).

string
status
required
Status

Probe outcome.

string
Allowed values: ok error
latency_ms
required
Latency Ms

Round-trip latency in milliseconds.

number
error
Any of:
string
oidc_providers
required
Oidc Providers

Per-provider OIDC discovery probe results, keyed by provider slug.

object
key
additional properties
ServiceProbeResult

Result of a single service connectivity probe.

object
name
required
Name

Service name (e.g. ‘storage’, ‘cache’, ‘oidc:google’).

string
status
required
Status

Probe outcome.

string
Allowed values: ok error
latency_ms
required
Latency Ms

Round-trip latency in milliseconds.

number
error
Any of:
string
Example
{
"storage": {
"status": "ok"
},
"cache": {
"status": "ok"
},
"oidc_providers": {
"additionalProperty": {
"status": "ok"
}
}
}