| Endpoint | Method | Admin Required |
|---|---|---|
/api/v1/admin/oidcProviders | GET | Yes |
Returns a paginated list of all configured OIDC providers, including disabled ones. The client secret is never included in the response - see Create OIDC Provider.
110{
"metadata": {
"page": 1,
"per": 10,
"total": 1
},
"items": [
{
"id": "63717CB9-DE10-44D2-AC69-774F57F6C148",
"name": "Google",
"issuerURL": "https://accounts.google.com",
"clientId": "your-client-id",
"enabled": true
}
]
}