Health
Returns detailed health information including database connectivity, version info, and system status. This endpoint is used by monitoring systems and load balancers. Returns 503 if critical systems (database, GitHub, Salesforce) are unhealthy.
All critical systems are healthy
No content
One or more critical systems are unhealthy
GET /sfp/api HTTP/1.1
Accept: */*
No content
Simple health check endpoint that bypasses the global prefix. Returns the same comprehensive health status as the root endpoint. Commonly used by Kubernetes and other orchestration systems. Returns 503 if critical systems (database, GitHub, Salesforce) are unhealthy.
All critical systems are healthy
No content
One or more critical systems are unhealthy
GET /health HTTP/1.1
Accept: */*
No content
Returns public configuration values for the web app including Supabase credentials, tenant info, and auth provider settings. These values are safe to expose publicly - security is enforced via Supabase RLS, not key secrecy.
Web app configuration
https://auth.flxbl.ioeyJ...https://my-tenant.flxbl.iomy-tenantgithubv2.0.0cloudPossible values: GET /sfp/api/config HTTP/1.1
Accept: */*
Web app configuration
{
"supabaseUrl": "https://auth.flxbl.io",
"supabaseAnonKey": "eyJ...",
"serverUrl": "https://my-tenant.flxbl.io",
"tenantLabel": "my-tenant",
"authProvider": "github",
"webAppVersion": "v2.0.0",
"deploymentMode": "cloud",
"sso": {
"domain": "example.com",
"providerId": "provider-id"
},
"authMethods": {
"emailPassword": true,
"mfaRequiredForPassword": true
}
}Last updated
Was this helpful?