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

300 questions
2
votes
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
  • 185
  • 1
  • 13
2
votes
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
  • 21
  • 2
2
votes
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
  • 493
  • 1
  • 8
  • 20
2
votes
0 answers

How to parse a JSON with SCIM Schemas in java

I have the following json which get from endpoint, { "schemas": [ "urn:ietf:params:scim:api:messages:2.0:response", "urn:scim:schemas:extension:customattrs:2.0:User" ], "meta": { "resourceType": "User", …
Vanitha V
  • 123
  • 2
  • 13
2
votes
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
  • 41
  • 7
2
votes
1 answer

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
  • 71
  • 1
  • 7
2
votes
0 answers

Onelogin roles provisioning

I am currently creating a SCIM app for Onelogin. I have a simple SCIM schema who works well, but I want to have a specific role if someone is in a group. What I am looking for is to add a JSON Object in an array of role. Example: If User 1 in group…
2
votes
3 answers

SCIM PATCH library

I am implementing SCIM provisioning for my current project, and I am trying to implement the PATCH method and it seems not that easy. What I read in the RFC is that SCIM PATCH is almost like JSON PATCH, but when I look deeper it seems a bit…
2
votes
1 answer

What is the proper SCIM syntax for adding a custom property

I am trying to extend the user model and add a new string property. If I understand, I can simply add it and return the value. My question is how do I document this in the resource type endpoint. Currently we have just the basic scim implementation…
Eugene
  • 73
  • 5
2
votes
1 answer

Expose custom claims in SCIM2 endpoints - WSO2

I'm using WSO2 v5.7, I added a custom claims namely "status" through Local claims and added a respective External claims too. Local Claim: External Claim: WSO2 IS Portal: Shows the newly added claim namely Status I triggered the SCIM2 End point…
B.Balamanigandan
  • 4,713
  • 11
  • 68
  • 130
2
votes
2 answers

provisioning using SCIM

Does Azure AD has a mechanism to detect if the target system is down during SCIM synch? For example a user is added to AD and this user has to be provisioned to some other target system that also supports SCIM, however the target system is down due…
borna
  • 906
  • 3
  • 12
  • 32
2
votes
2 answers

Azure AD User Provisioning with SCIM 2.0

I'm trying SCIM 2.0 provisioning with Azure AD As premise, I have SCIM a server for my product and I'm implementing PATCH endpoints for use with Okta and Microsoft Azure AD. I'm done testing with Okta, so I'm trying with Azure AD now. I read this…
Daichi
  • 198
  • 2
  • 13
2
votes
1 answer

OneLogin SCIM provisioning for Groups

I am building OneLogin SCIM Provisioner with SAML (Core Schema) app. I've created two controllers - Users and Groups. UsersController logic works perfectly - I can provision users and do all CRUD operations. But I am having issues with provisioning…
Loki
  • 61
  • 4
2
votes
1 answer

Onelogin login error: "Response not found"

I'm using SCIM Provisioner with SAML (Enterprise Schema) app. I got the following error when try to login to my website using the app: Error : OneLogin_Saml2_Error:-SAML Response not found, Only supported HTTP_POST Binding How can I fix this?
Shamon S
  • 127
  • 1
  • 8
2
votes
1 answer

How do I enable SCIM for primary user store? (wso2carbon)

I am working with wso2 carbon and am I trying to work though some of the SCIM examples, however, when I try to add a user to the store I get the following error: {"Errors":[{"code":"500","description":"Cannot add user through scim to user store .…
Speckpgh
  • 3,332
  • 1
  • 28
  • 46
1 2
3
19 20