Skip to main content
GET
/
api
/
v1
/
sso
/
oidc
/
config
cURL
curl --request GET \
  --url https://us.infisical.com/api/v1/sso/oidc/config \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "issuer": "<string>",
  "authorizationEndpoint": "<string>",
  "jwksUri": "<string>",
  "tokenEndpoint": "<string>",
  "userinfoEndpoint": "<string>",
  "configurationType": "<string>",
  "discoveryURL": "<string>",
  "isActive": true,
  "orgId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "allowedEmailDomains": "<string>",
  "manageGroupMemberships": false,
  "jwtSignatureAlgorithm": "RS256",
  "clientId": "<string>",
  "clientSecret": "<string>"
}

Authorizations

Authorization
string
header
required

An access token in Infisical

Query Parameters

organizationId
string
required

The ID of the organization to get the OIDC config for.

Response

Default Response

id
string<uuid>
required
configurationType
string
required
isActive
boolean
required
orgId
string<uuid>
required
clientId
string
required
clientSecret
string
required
issuer
string | null
authorizationEndpoint
string | null
jwksUri
string | null
tokenEndpoint
string | null
userinfoEndpoint
string | null
discoveryURL
string | null
allowedEmailDomains
string | null
manageGroupMemberships
boolean
default:false
jwtSignatureAlgorithm
string
default:RS256