Integrate with Personio
Support level: Community
What is Personio?
Personio is an HR software platform for managing core HR processes such as recruiting, onboarding, payroll, time tracking, and performance management.
Preparation
The following placeholders are used in this guide:
authentik.companyis the FQDN of the authentik installation.
To set up SSO, you need either an Administrator role in Personio or an employee role with edit permissions for Account configuration > Authentication. Personio does not create or sync employees through this OIDC connection, so each employee must already have an invited and activated Personio profile.
This documentation lists only the settings that you need to change from their default values. Be aware that any changes other than those explicitly mentioned in this guide could cause issues accessing your application.
Before you configure authentik, copy the Personio callback URL:
- Log in to Personio as an administrator.
- Navigate to Settings > Security & integrations > Security & authentication.
- From the list of login methods, go to Open ID Connect (OIDC) and click Configure.
- Under Provider settings, copy the Callback URLs/Redirect URIs value.
authentik configuration
In authentik versions earlier than 2026.5, all Redirect URIs are automatically treated as Authorization type. If you are using one of these older authentik versions, add only the Authorization URL to your Redirect URIs and do not configure a Post Logout URI.
To support the integration of Personio with authentik, you need to create an application/provider pair in authentik.
-
Log in to authentik as an administrator and open the authentik Admin interface.
-
Navigate to Applications > Applications and click New Application to open the application wizard.
- Application: set Application Name, Slug, an optional group, the policy engine mode, and optional UI settings. Take note of the Slug as it will be required later.
- Choose a Provider: select OAuth2/OpenID Connect on the Choose a Provider Type page.
- Configure OAuth2 Provider: provide a name (or accept the auto-provided name), select the authorization flow to use for this provider, and set the following values.
- Note the Client ID and Client Secret values because they will be required later.
- Set the Client type to
Confidential. - Add two Redirect URIs of type
StrictAuthorization:- The Callback URLs/Redirect URIs value from Personio.
https://login.personio.com/login/callback
- Select any available signing key.
- Configure Bindings (optional): you can create a binding (policy, group, or user) to manage the listing and access to applications on a user's Application Dashboard page.
-
Click Create Application to save the new application and provider.
Personio configuration
- Log in to Personio as an administrator.
- Navigate to Settings > Security & integrations > Security & authentication.
- From the list of login methods, go to Open ID Connect (OIDC) and click Configure.
- Under Configuration, enter the following values:
- Button Display Text:
Continue with authentik - Issuer:
https://authentik.company/application/o/<application_slug>/ - Authorization URI:
https://authentik.company/application/o/authorize/ - Token URI:
https://authentik.company/application/o/token/ - Userinfo URI:
https://authentik.company/application/o/userinfo/ - JSON Web Key Set URI:
https://authentik.company/application/o/<application_slug>/jwks/ - Scopes:
openid,email - Client ID: the Client ID from the authentik provider.
- Client Secret: the Client Secret from the authentik provider.
- Secret expiry date: the date when you plan to rotate the authentik client secret.
- Claim Field:
email
- Button Display Text:
- Submit the changes and enable the connection.
Personio matches incoming users by the value of the configured Claim Field. Make sure each employee has an active Personio profile and that the email address returned by authentik matches the email address of the corresponding Personio employee, otherwise the SSO login will fail.
Configuration verification
To confirm that authentik is properly configured with Personio, open Personio and click Continue with authentik. You should be redirected to authentik to log in, then redirected back to Personio.
You can also use Perform a configuration test on the Personio OIDC configuration screen to validate the connection without logging out.