Skip to content

Active Connections

Active Connections

The Authorisation Layer dashboard (Gateway tab → Active Connections) shows which providers your workspace has routed traffic through. Connections are created automatically the first time a request passes through the gateway for that provider.

You can disconnect a provider to pause enforcement and block all new requests through that provider route. Reconnect at any time. This is useful when temporarily suspending a provider without removing your integration.

API

# List all connections for a workspace
GET /api/sentinel/enforcement/gateway/connections?workspace_id=<id>

# Disconnect (pause) a provider
POST /api/sentinel/enforcement/gateway/connections/openai/toggle
Content-Type: application/json
{ "workspace_id": "<id>", "is_active": false }

# Reconnect a provider
POST /api/sentinel/enforcement/gateway/connections/openai/toggle
Content-Type: application/json
{ "workspace_id": "<id>", "is_active": true }

Valid provider slugs: openai, anthropic, azure, bedrock, gemini.