bland-finland-95044
04/23/2025, 5:26 PMbrief-egg-61061
04/23/2025, 5:26 PMbrief-egg-61061
04/23/2025, 5:27 PMbash curl -X GET --location "<https://api.console.ory.sh/projects/$PROJECT_ID>" \ -H "Authorization: Bearer $WORKSPACE_API_KEY" \ | jq ".services.identity.config.selfservice.methods.oidc.config.providers | map(select(.organization_id == \"$ORGANIZATION_ID\"))"
This command: 1. Gets the project configuration 2. Uses jq
to filter the OIDC providers that belong to the specific organization ID ### Using the Ory Console You can also view the SSO connections for an organization through the Ory Console: 1. Go to Authentication → Enterprise SSO in the [Ory Console](https://console.ory.sh/projects/current/authentication/organizations) 2. Find and select the organization you're interested in 3. The SSO connections for that organization will be displayed ### Getting Organization ID If you need to first get the organization ID, you can list all organizations in your project: bash curl -X GET --location "<https://api.console.ory.sh/projects/$PROJECT_ID/organizations>" \ -H "Authorization: Bearer $WORKSPACE_API_KEY"
Or get a specific organization by ID: bash curl -X GET --location "<https://api.console.ory.sh/projects/$PROJECT_ID/organizations/$ORGANIZATION_ID>" \ -H "Authorization: Bearer $WORKSPACE_API_KEY"
You can also filter organizations by domain: bash curl -X GET --location "<https://api.console.ory.sh/projects/$PROJECT_ID/organizations?domain=example.com>" \ -H "Authorization: Bearer $WORKSPACE_API_KEY"
[Ory API Reference](https://www.ory.sh/docs/reference/api) provides more details on these API endpoints. [Create SSO connections for an organization](https://www.ory.sh/docs/kratos/organizations#create-sso-connections-for-an-organization) has additional information about managing SSO connections.bland-finland-95044
04/24/2025, 7:03 PMbrief-egg-61061
04/24/2025, 7:03 PMbrief-egg-61061
04/24/2025, 7:04 PMbash ory create oauth2-client --project "$PROJECT_ID" \ --name "Example Corp" \ --grant-type authorization_code,refresh_token \ --response-type code \ --scope openid,offline_access,email \ --redirect-uri <https://your-project-slug.projects.oryapis.com/self-service/methods/oidc/callback/H1o_k--i>
[Ory as a Social Sign-in Provider](https://www.ory.sh/docs/kratos/social-signin/ory) provides detailed instructions on this setup. ### Key Benefits - Certified Implementation: Ory is a [Certified OpenID Connect Implementation](https://www.ory.sh/docs/oauth2-oidc) meeting all requirements set by the OpenID Foundation - Flexible Integration: Can connect with existing user management systems - Global Deployment: Available in data centers worldwide for low-latency access - Security-First Architecture: Designed to neutralize common attack vectors Ory can also support enterprise SSO scenarios with SAML connections for B2B use cases on Enterprise plans, as described in the [SAML via Ory Network](https://www.ory.sh/docs/kratos/organizations#saml-via-ory-network) documentation.bland-finland-95044
04/25/2025, 10:04 PMbrief-egg-61061
04/25/2025, 10:04 PMbrief-egg-61061
04/25/2025, 10:04 PM