Calimatic Auth Documentation

Everything you need to integrate with the Calimatic Identity platform. Choose your path below to get started.

OAuth 2.0OpenID ConnectSCIM 2.0WebhooksUser Provisioning APIHeadless Auth API

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.

ModeHeadersWhen to use
App Client (Basic)x-client-id + x-client-secretSimplest. No token management.
OAuth2 BearerAuthorization: Bearer <token>Standard OAuth2. Cache the token for its TTL (default 1h).
API Keyx-api-keyOrg-scoped key (cannot cross orgs).
Session CookieNextAuth session from Calimatic Auth loginAdmin 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.

Base URL

https://auth.calimatic.com

Discovery

https://auth.calimatic.com/.well-known/openid-configuration