Skip to main content
Artie supports any identity provider that implements the OIDC (OpenID Connect) standard. If you’re not using Okta or Microsoft Entra ID, this guide covers the generic setup. What you’ll need before starting:
  • The ability to create an application / client registration in your identity provider
  • Admin access to your Artie account (Settings → Authentication)

Set up your identity provider

Every OIDC provider is different, but the steps follow the same pattern:
1

Create an application in your identity provider

Create a new web application or OIDC client in your IdP. The exact name varies by provider (e.g. “App registration”, “Service Provider”, “OAuth client”).When prompted for a redirect URI, use:
https://api.artie.com/sso/oidc/callback
2

Retrieve your credentials

You’ll need three things from your IdP:
FieldWhere to find it
Issuer URLUsually called “Issuer”, “Discovery URL”, or “Authority”. It’s the base URL of the OIDC configuration (without /.well-known/openid-configuration).
Client IDCreated when you registered the application.
Client secretCreated alongside the client ID. Copy it immediately since most providers only show it once.
You can verify the Issuer URL is correct by appending /.well-known/openid-configuration. It should return a JSON document.

Configure SSO in Artie

  1. Go to Settings → Authentication in Artie
  2. Click Configure SSO
  3. Enter your Issuer URL, Client ID, and Client secret
  4. Click Save
Users can now log in at app.artie.com/login/sso. If your provider requires specific scopes, ACR values, or behaves differently from the standard OIDC flow, contact us and we’ll help you get it working.