Questions tagged [scim]

The System for Cross-domain Identity Management (SCIM) specification is designed to make managing user identities in cloud-based applications and services easier.

The SCIM standard was created to simplify user management in the cloud by defining a schema for representing users and groups and a REST API for all the necessary CRUD operations.

SCIM homepage is http://www.simplecloud.info

212 questions
1
vote
2 answers

How does the Bearer token works in SCIM

I'm creating a set of API endpoints that should be compliant with SCIM schemas to work as a SCIM server for Okta platform. The SCIM schema is clear to me, but I'm having problems understanding the Authorization. According to the SCIM docs, the…
James
  • 1,646
  • 2
  • 33
  • 52
1
vote
1 answer

SCIM userName in PATCH operation

I have implemented user provisioning/deprovisioning with SCIM like so : users_controller.rb class Scim::UsersController < Scim::ScimController before_action :set_scim_provider def index startIndex = params[:startIndex].to_i startIndex…
jdps
  • 199
  • 1
  • 11
1
vote
1 answer

Patch request in SCIM with Azure AD

How should I handle the following PATCH request, for a user that when initially added didn't have any address (not even an empty addresses array)? { "schemas": [ "urn:ietf:params:scim:api:messages:2.0:PatchOp" ], "Operations": [ …
Patman
  • 115
  • 1
  • 11
1
vote
1 answer

User provisioning via SCIM with and without SSO

I would like to understand why most IdPs only offer the SCIM service together with SSO (especially SAML). For me, these are two different concepts SSO: loging in SCIM: user provisioning I'm referring to user provisioning via SCIM via an API, not…
ezdazuzena
  • 5,250
  • 4
  • 35
  • 65
1
vote
1 answer

Can SCIM update non SCIM-created resources?

Specifically, can SCIM be used to add Users to pre-existing (non SCIM-created) groups? We need to provision users via SCIM, but then add them to Groups created manually in the site (a .Net application). As I understand it, it can't be done like…
user29989
  • 11
  • 1
1
vote
0 answers

Is registration required for custom SCIM extensions?

In our product, we have decided to provide a custom schema extension which will have the attributes that are neither part of core schema nor enterprise schema provided by SCIM2.0. Do we need to register this schema extension with IANA? If yes, what…
amitsp
  • 11
  • 2
1
vote
2 answers

SCIM implementation for Spring Boot SAML and OKTA

My requirement is to implement SCIM 2.0 server for Spring Boot application which supports SAML for OKTA authentication. I haven't found any library provided by Spring Boot for SCIM sever and neither the documentation exists for it in Spring's…
gbhati
  • 153
  • 2
  • 15
1
vote
1 answer

Search/List Users Filter Expression Syntax in RingCentral SCIM 2.0 API

In the RingCentral API reference there is a Search/List Users function that requires a filter expression. What is the syntax of this filter expression? The description of the filter parameter is simply "only support 'userName' or 'email' filter…
Steve Glick
  • 558
  • 6
  • 19
1
vote
0 answers

SCIM filter parsing

I want to use the SCIM filtering format for my REST service. Question 1: Can I use this for my internal REST service? Means my query parameter q will contain string like this &q=(productName co 4) and (productName co JAM). Can I use it? Question…
Vijay
  • 23
  • 4
1
vote
1 answer

WSO2is SCIM 2 create new user with custom fields

I can create new users following a sample found it here: curl -v -k --user admin@tenant1.com@tenant1.com:admin --data…
BryGom
  • 511
  • 1
  • 4
  • 19
1
vote
1 answer

wso2 IS as KM can't use SCIM

I installed a IS as KM (v3.0.0) with mysql database user store. I'm trying to use the SCIM api to create a user but I'm getting a 302 redirection. Using a browser to access https://is-as-km:9443/wso2/scim/Users/me returns "Error 405 - Method Not…
1
vote
0 answers

Azure Active Directory SCIM Mapping

I am trying to implement SCIM in AAD and am having a hard time mapping the fields. When a user is added to a group. In this example i want the following to happen: (pretty much what scim does) User is provisioned, the user is created. User…
Joel Mora
  • 43
  • 6
1
vote
0 answers

How to use GitHub SCIM filter?

I tried to search for a GitHub SCIM User using the filter parameter. I tried filter=emails eq xxx4@test or filter=emails%20eq%20\"xxx4@test.com\", but it returns: { "schemas": [ "urn:ietf:params:scim:api:messages:2.0:Error" ], …
1
vote
1 answer

Not Getting option to change to manual SCIM Provisioning

How I can change the option of scim provisioning from automatic to manual in Azure ?
Deepak Patankar
  • 2,175
  • 2
  • 11
  • 24
1
vote
1 answer

WSO2 SCIM User not reflecting on Carbon UI Users list

I've WSO2 IS 5.8.0. Email OTP is enabled on my setup. I've tried to add user using scim as given in the documentation. As below: curl -v -k --user admin:admin --data…
AshwinK
  • 893
  • 9
  • 23
1 2
3
14 15