Uh oh!
There was an error while loading. Please reload this page.
feat(scim): Add SCIM /Users endpoints - #2747
Draft
xlgmokha wants to merge 3 commits into
Draft
Conversation
xlgmokhaforce-pushed
the
scim/3-users
branch
2 times, most recently
from
August 26, 2026 22:33
6e4416d to
edff202Comparexlgmokhaforce-pushed
the
scim/3-users
branch
2 times, most recently
from
August 26, 2026 23:31
3538a0b to
77782abComparexlgmokhaforce-pushed
the
scim/3-users
branch
2 times, most recently
from
August 27, 2026 16:17
4709682 to
e114c8eCompare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What kind of change does this PR introduce?
Feature. Add SCIM endpoints for core User schema.
What is the current behavior?
These endpoints do not exist yet.
What is the new behavior?
Adds:
/scim/v2/Users/scim/v2/Users/{id}/scim/v2/Users/scim/v2/Users/{id}/scim/v2/Users/{id}/scim/v2/ResourceTypes/{id}/scim/v2/Schemas/{id}Additional context
/Usersendpoints authenticate with a bearer SCIM token. Tokens are stored hashed in the newscim_tokenstable, are revocable (revoked_at) and expirable (expires_at), and resolve to ansso_provider_idthat scopes every query to a single tenant./ResourceTypes/{id}and/Schemas/{id}routes are discovery metadata and are unauthenticated, consistent with the existing/ServiceProviderConfig,/ResourceTypes, and/Schemasendpoints.requireScimServerEnabledgate.scim_usersandscim_tokenstables. A user's SCIM payload is stored as a JSONBresourcecolumn and deletes are soft usingdeleted_at.Listrejects anyfilterparameter.Extracted from #2731