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
3
votes
0 answers

Why does Google Workspace SCIM not provision groups to AWS IAM Identity Center?

I successfully set up autoprovisioning for users coming from Google Workspace in AWS IAM Identity Center. Unfortunately, groups are not synced over at all. Right now, groups are mapped as shown in the following screenshot: Assuming that group…
manu
  • 967
  • 1
  • 11
  • 28
3
votes
1 answer

Doc about SCIM implementation for Google Workspace?

I need to develop a SCIM endpoint for Azure and Google Workspace. Azure and Okta have a good technical documentation about it, but I can't find anything on the Google side. All I can find is some help about how to configure an app from the…
BenoitD
  • 525
  • 1
  • 6
  • 16
3
votes
1 answer

Set up auto provisioning for custom SAML Web app in Google workspace

I am trying to set up a custom SAML Web app with auto provisioning in my google admin. I am able to create an custom SAML Web app but the auto provisioning feature is not available. As per this community link there are a bunch of other apps which…
Subhrajyoti Das
  • 2,685
  • 3
  • 21
  • 36
3
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
  • 33
  • 5
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

What is SCIM provisioning?

Can anybody please tell me, what is exactly mean by SCIM provisioning and how it works? What is difference between SCIM endpoint and SCIM client? Thanks in advance.
techsu
  • 753
  • 2
  • 7
  • 11
3
votes
2 answers

SCIM 2.0 implementations with good documentation

I just started exploring scim2.0. Following link provides me different implementations of scim2.0. http://www.simplecloud.info/ Can some one suggest me, which one is easy to learn and has good documentation. It is helpful, if you suggest me some…
Hari Krishna
  • 3,658
  • 1
  • 36
  • 57
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
  • 14
  • 30
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
  • 4
2
votes
1 answer

How to configure SCIM provisioning for Azure AD and Databricks via terraform?

TL;DR: Is it possible to have terraform perform the Microsoft Graph steps for SCIM provisioning for Azure AD and Databricks? I am trying to configure automatic SCIM provisioning for Databricks so that user and group management can be done via Azure…
2
votes
1 answer

Invoking groups SCIM API

I am using WSO2 IDM server and working on using SCIM API's available. When I invoked the get groups SCIM API https://localhost:9443/wso2/scim/Groups, I am getting error in response { "Errors": [ { "code": "404", …
2
votes
2 answers

How to remove a value of multi-valued SCIM 2.0 sub-attribute?

I have a complex SCIM attribute that looks like follows: "myattr1": { "subattr1": 5, "subattr2": [1, 2, 3] } I want to modify this to become "myattr1": { "subattr1": 5, "subattr2": [1, 3] } How can I do this using PATCH ? Should I replace…
Rahul
  • 963
  • 9
  • 14
2
votes
2 answers

SCIM Google Workspace Snowflake

Is someone already configure Google Workspace working with Snowflake and has user automatically created (as Okta can purpose) Thanks for the help
2
votes
0 answers

Azure AD provisioning sends SCIM replace operation when adding user to group

I have user and group provisioning set up for an enterprise application in Azure AD. I have a SCIM endpoint setup in my application to consume the SCIM requests from Azure AD. I added this feature flag to my tenant URL to ensure SCIM compliance:…
2
votes
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,653
  • 2
  • 31
  • 60
1
2
3
19 20