Questions tagged [scim2]

The SCIM 2.0 specifications designed to make managing user identities in cloud-based applications and services easier.

The specification suite seeks to build upon experience with existing schemas and deployments, placing specific emphasis on simplicity of development and integration, while applying existing authentication, authorization, and privacy models. Its intent is to reduce the cost and complexity of user management operations by providing a common user schema and extension model, as well as binding documents to provide patterns for exchanging this schema using standard protocols. In essence: make it fast, cheap, and easy to move users in to, out of, and around the cloud.

SCIM 2.0 is released as RFC7642, RFC7643 and RFC7644 under IETF in September 2015.

SCIM Homepage http://www.simplecloud.info/

126 questions
0
votes
1 answer

I'm trying to create scim integration. In Azure databricks email attribute is missing

I would like to test my scim integration with Azure Active Directory. I created provisioning in DataBricks, but the list of attributes is missing email. How do I add it? Update after the answer was accepted: I was trying to use DataBricks in order…
0
votes
1 answer

Can PUT create a resource which does not exist?

I am trying to implement a SCIM REST API and got a small confusion with respect to PUT operation. As per SCIM RFC RFC 7644 PUT used to replace/update resource and PUT should not create a resource. What API needs to do if the resource doesn't…
Jo Paul
  • 783
  • 1
  • 9
  • 14
0
votes
1 answer

is there any SCIM2 compliance test utility available

is there any SCIM2 compliance test utility available? Basically I want to test SCIM2 server functionality whether it satisfy the standards of SCIM2 protocol and schema as defined…
SuVeRa
  • 2,784
  • 2
  • 20
  • 27
0
votes
1 answer

How do I turn on provisioning for our Enterprise application in azure AD without being in the gallery?

I created an Application Registration on our Azure AD. I then use the application registration id to create "Enterprise Application" in our customers' AD's. It goes like this Their admin sign into our system and clicks connect AD We send a…
Rickard Liljeberg
  • 966
  • 1
  • 12
  • 39
0
votes
1 answer

Azure AD SCIM: SystemForCrossDomainIdentityManagementMultipleEntriesInResponse

We're using Azure AD as the Identity Provider for User Provisioning into our system. We have started getting this error of late. EntrySynchronizationError Result Failure Description Failed to match an entry in the source and target systems User…
Keenan
  • 1
  • 2
0
votes
1 answer

Azure AD scim2 provisioning mapping primary email

We are trying to integrate our scim2 api with Azure AD and trying to figure out how to map the primary email value. We see that you can map multivalued attributes as in this…
user1452215
  • 620
  • 5
  • 16
0
votes
1 answer

Azure AD enterprise application provisioning

I am facing issues while provisioning Java application in Azure AD enterprise application. I have created SCIM api as per the azure documents but still I am getting below error. Error code:…
0
votes
1 answer

WSO2 5.10 SCIM API doesnt send email when creating user with askpassword set to true

I'm testing WSO2 5.10 user creation via SCIM Rest API using the following curl command curl -v -k --user admin:admin --data…
Trinadh venna
  • 475
  • 3
  • 11
0
votes
1 answer

WSO2is SCIM query with two filters

I understand that it is not possible to use the 'or' operator to make queries. What alternative is there to perform a query with two filters for same attribute but diffrente query, for…
BryGom
  • 649
  • 1
  • 11
  • 21
0
votes
1 answer

SCIM supported use case?

I have a case where we would like to update the identity provider data (like Azure AD etc) for example add/delete certain groups to accounts. A standard like SCIM would be desired, to gain support for several identity providers, I assume. The SCIM…
Dev_Karl
  • 53
  • 2
  • 2
  • 7
0
votes
1 answer

Parsing JSON in SCIM endpoint C#

I am currently trying to develop a SCIM endpoint to be called from AAD. I pretty much understand the setup of SCIM and the idea behind it (I think). The problem is that I can't wrap my head around how to practically work with the Schemas. Should I…
PNS
  • 750
  • 1
  • 5
  • 19
0
votes
1 answer

Why Azure treating 400 (Bad request) response as SCIM implementation error in provider?

Audit Log: I have chose to not to DELETE group according to scim specification https://www.rfc-editor.org/rfc/rfc7644#section-3.6 Clients request resource removal via DELETE. Service providers MAY choose not to permanently delete the…
0
votes
1 answer

Should the schema be altered if the server does not handle all attributes?

If our SCIM server only handles a small subset of the attributes in the core User schema and ignores most other attributes: Should the server return a reduced schema that reflects what is supported on the schemas endpoint? Or should it return the…
stefanfoulis
  • 649
  • 4
  • 16
0
votes
1 answer

create user with extended claim with scim2 in wso2

I am trying to create a user with scim2 API in wso2 with my own extended claim my API request { "schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"], "name": { "familyName": "jackson", "givenName": "kim" }, …
ankalal
  • 162
  • 1
  • 11
0
votes
1 answer

SystemStackError: when parsing SCIM 2.0 filter query using Parslet

I am writing a SCIM 2.0 filter parser using Parslet. When I try to parse the following query, I end up with a SystemStackError. 'title pr or userType eq "Intern"' I have converted the ABNF notation from https://www.rfc-editor.org/rfc/rfc7644#page-21…
mokha
  • 47
  • 5
1 2 3
8 9