SCIM Endpoint
A SCIM endpoint is the web address where an application receives requests to create, update, or remove user and group accounts from an identity provider. It lets an organization's central identity system automatically keep user access in the connected application in sync, rather than requiring administrators to manage those accounts by hand.
A SCIM endpoint is the HTTP-based service exposed by an application (the service provider) that implements the System for Cross-domain Identity Management (SCIM) standard so that an identity provider can provision and deprovision identity resources. In typical implementations it exposes RESTful resource paths such as /Users and /Groups, against which the provisioning source issues create, read, update, and delete operations to synchronize user and group records. This is an IGA lifecycle-management (provisioning/synchronization) mechanism and is distinct from runtime access enforcement and from authentication, SCIM governs how account and attribute data are pushed into a target system, not how a principal authenticates or is authorized at access time. Exact supported resources, schema extensions, and operations depend on the service provider's SCIM implementation and the profile it supports; consult the specific vendor documentation, as capabilities vary by deployment.
Why it matters
Manual account management across a growing portfolio of applications is error-prone and slow, and the gaps it creates are a governance and security liability. When an employee changes roles or leaves an organization, any application whose accounts are managed by hand risks retaining stale or orphaned access until an administrator remembers to remove it. A SCIM endpoint lets the central identity provider push those lifecycle changes, creation, attribute updates, and deprovisioning, into the connected application automatically, closing the window during which access lingers after it should have been revoked.
Because SCIM standardizes how identity data is synchronized, it reduces the need for bespoke, per-application integration code. Identity providers such as Microsoft Entra, AWS IAM Identity Center, and Okta document how to build to or consume a SCIM endpoint, which means an application that exposes a conformant endpoint can be provisioned by multiple identity sources without custom connectors for each. This matters for both operational scale and for audit: consistent, automated provisioning produces more predictable and reviewable access data than manual processes.
It is important to keep SCIM's scope clear. A SCIM endpoint governs how account and attribute data are provisioned and deprovisioned, an IGA lifecycle concern, not how a user authenticates or what they are authorized to do at access time. A well-implemented SCIM endpoint improves the timeliness and accuracy of the underlying account data, but it does not by itself enforce access decisions; runtime authorization and authentication are handled by separate mechanisms.
Who it's relevant to
Inside SCIM
Common questions
Answers to the questions practitioners most commonly ask about SCIM.
