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
11
votes
1 answer

Okta SCIM Deprovisioning via PUT method?

Our backend server doesn't support HTTP PATCH method (only PUT). As the result we cannot properly Unassign User from SCIM app. When I try Unassign User, Okta SCIM seems make PATCH request (not PUT). The Okta SCIM docs says: Okta also does a PUT if…
Andrii Furmanets
  • 771
  • 2
  • 8
  • 29
10
votes
3 answers

SCIM (System for Cross-domain Identity Management) library for C#

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. It is intended to replace the older SPML protocol. Are there any…
rbrayb
  • 40,518
  • 31
  • 108
  • 154
8
votes
2 answers

AzureAD SCIM integration not sending DELETE requests

I implemented SCIM API and integrated with Azure. When I delete a user in AzureAD it does not send DELETE requests. I tried deleting from the application as well as from the directory. Get Users/[userID], Get Query, and POST /Users working fine.…
Dhanuka777
  • 7,389
  • 5
  • 61
  • 112
5
votes
1 answer

Does ADFS server supports scim protocol

Does current Microsoft ADFS 2.0 server (or new ADFS 3.0 RTM ) support SCIM provisioning protocol ? If not which one provisioning protocol is planned SPML maybe ?
Rastko
  • 832
  • 1
  • 13
  • 30
4
votes
0 answers

Configure SCIM user provisioning with GSuite Google Workspace

I would like to provision my SaaS application and Google Workspace (ex GSuite) using SCIM. I do not find any documentation for this. Just a list of pre-configured applications. It seems to be well supported on Microsoft Azure AD and other identity…
poiuytrez
  • 18,348
  • 28
  • 100
  • 156
4
votes
0 answers

How do you publish a SCIM 2.0 provisioning app in the G Suite Marketplace?

I'd like to publish an app on the G Suite Marketplace that allows user and group management/provisioning via SCIM 2.0. Where do I need to go to configure that? This article from 2016 made me think it would be possible…
4
votes
3 answers

PATCH request for SCIM 2.0

We are sending PATCH request to a server in SCIM specification. As per the SCIM specifications, the request should contain following attributes in PATCH request. op path value So if we are changing the 'givenName' attribute from core schema then…
Ravi
  • 94
  • 4
  • 12
4
votes
1 answer

SCIM Deserialization Issue in .NET

As a newcomer to the SCIM (System for Cross-domain Identity Management) standard, please excuse any ignorance as I'm on the learning curve trying to figure out how to make clean/simple requests to provision users, delete users and modifiy users. I'm…
peteski
  • 1,297
  • 1
  • 16
  • 36
3
votes
1 answer

Azure AD users are no longer deactivated when removed from assigned users

We created an application with SCIM support over two year ago now and it always worked fine. However recently we have been getting reports from customers that users were no longer deleted/disabled from the target enterprise application. I already…
3
votes
2 answers

Does Keycloak Support SCIM?

Has anyone used SCIM with Keycloak? If so, can you point me at documentation? I've google searched and it doesn't appear to be a supported configuration.
Mike Maxey
  • 31
  • 1
  • 3
3
votes
1 answer

How does G Suite detect SCIM support?

I'm trying to setup user provisioning in G Suite for my SCIM-implementing application. According to the documentation, it should be a relatively straightforward task: make sure G Suite knows about /auth and /scim endpoints, and you're done. But the…
raina77ow
  • 91,589
  • 12
  • 180
  • 210
3
votes
2 answers

slack scim api - using the FILTER parameter

I'm trying to use the filter parameter in a RESTful GET request, via this Slack API: https://api.slack.com/scim The Docs read: GET /Users - Returns a list of Users in a paginated fashion. Use startIndex and count query parameters to change…
Devin
  • 1,011
  • 2
  • 13
  • 28
3
votes
1 answer

WSO2 SCIM Extension Ignored When Using REST API

I'm running a default configuration of WSO2 Identity Server and trying to use the SCIM extensions described here I've reduced provisioning-config.xml down to…
bwgz57
  • 51
  • 3
2
votes
1 answer

Handling unsupported SCIM attributes in a PATCH request

I am unsure of how my API should respond when it receives a PATCH request to add/update a SCIM User attribute when the User model does not support that. Let's assume that my User model doesn't have a "title" attribute, but the identity provider…
TimmyTango
  • 23
  • 4
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…
1
2 3
14 15