Frontegg’s Single Sign-On (SSO) enables users to sign in using their existing credentials, removing the need to create new usernames and passwords specifically for your application.
Our SSO solution supports two popular protocols: SAML and OpenID Connect (OIDC). These protocols facilitate user authentication across multiple applications and can be configured via Frontegg’s Management Portal or the Self-Service menu within your application.
This section lists all relevant API endpoints, organized into Management and Self-Service categories:
Management Endpoints: Require environment-level authorization and provide comprehensive control over SSO (SAML and OIDC) resources.
Self-Service Endpoints: Accessible with a user token (JWT), allowing users with appropriate permissions to create, update, and delete SSO connections on their accounts.
https://api.frontegg.com/team/
https://api.us.frontegg.com/team/
https://api.ca.frontegg.com/team/
https://api.au.frontegg.com/team/
https://{domain}.frontegg.com/team/
https://api.frontegg.com/team/resources/sso/v1/saml/configurations/sp-metadata
https://api.us.frontegg.com/team/resources/sso/v1/saml/configurations/sp-metadata
https://api.ca.frontegg.com/team/resources/sso/v1/saml/configurations/sp-metadata
https://api.au.frontegg.com/team/resources/sso/v1/saml/configurations/sp-metadata
https://app-xxx.frontegg.com/team/resources/sso/v1/saml/configurations/sp-metadata
curl -i -X GET \
https://api.frontegg.com/team/resources/sso/v1/saml/configurations/sp-metadata \
-H 'frontegg-tenant-id: string'
https://api.frontegg.com/team/resources/sso/v1/configurations/excluded-emails
https://api.us.frontegg.com/team/resources/sso/v1/configurations/excluded-emails
https://api.ca.frontegg.com/team/resources/sso/v1/configurations/excluded-emails
https://api.au.frontegg.com/team/resources/sso/v1/configurations/excluded-emails
https://app-xxx.frontegg.com/team/resources/sso/v1/configurations/excluded-emails
curl -i -X POST \
https://api.frontegg.com/team/resources/sso/v1/configurations/excluded-emails \
-H 'Content-Type: application/json' \
-d '{
"email": "string"
}'
https://api.frontegg.com/team/resources/sso/v1/configurations/excluded-emails
https://api.us.frontegg.com/team/resources/sso/v1/configurations/excluded-emails
https://api.ca.frontegg.com/team/resources/sso/v1/configurations/excluded-emails
https://api.au.frontegg.com/team/resources/sso/v1/configurations/excluded-emails
https://app-xxx.frontegg.com/team/resources/sso/v1/configurations/excluded-emails
curl -i -X GET \
https://api.frontegg.com/team/resources/sso/v1/configurations/excluded-emails