Calimatic Auth Documentation
Everything you need to integrate with the Calimatic Identity platform. Choose your path below to get started.
REST API Authentication
All platform REST endpoints (/api/v1/organizations/*, /api/v1/users/*, etc.) accept any of four authentication modes. Pick whichever fits your stack — the same app client credentials work in all of them.
| Mode | Headers | When to use |
|---|---|---|
| App Client (Basic) | x-client-id + x-client-secret | Simplest. No token management. |
| OAuth2 Bearer | Authorization: Bearer <token> | Standard OAuth2. Cache the token for its TTL (default 1h). |
| API Key | x-api-key | Org-scoped key (cannot cross orgs). |
| Session Cookie | NextAuth session from Calimatic Auth login | Admin dashboard, in-browser calls. |
Bearer tokens are obtained from POST /api/v1/oidc/token with grant_type=client_credentials. Only client_credentials tokens are accepted on REST endpoints — user-context tokens (from authorization_code) will return 401.
Choose Your Path
Pick the guide that matches your situation.
Building a New Calimatic App
Greenfield integration. Register your app, configure OIDC, and start authenticating users in minutes.
Get startedMigrating an Existing Calimatic App
Move existing users and organizations to Calimatic Auth. Includes bulk import, dual-auth, and cutover planning.
Get startedIntegrating a Third-Party App
Add Calimatic login to your application using standard OAuth 2.0 / OIDC. No special SDK required.
Get startedImporting Existing Users
Already have users? Bulk import them into Calimatic Auth with deduplication, role mapping, and org assignment.
Get startedAPI Reference
OAuth / OIDC Endpoints
Authorization, token, userinfo, introspection, revocation, and discovery.
User Management API
Provision, import, resolve, and manage user passwords programmatically.
Webhooks
Subscribe to real-time events: user created, password reset, license changes.
SCIM 2.0
Enterprise user provisioning via the standard SCIM protocol.
Headless Auth API
Direct API authentication: login, MFA, signup, password reset, sessions, and security.
Guides
Base URL
https://auth.calimatic.comDiscovery
https://auth.calimatic.com/.well-known/openid-configuration