Home > Net >  Spring and WSO2 Identity Server
Spring and WSO2 Identity Server

Time:10-20

I'm trying to implement a Dashboard where some users (those who have the role of Manager) can add, update and remove other users. Is there a way to add a new user updating not only my database but also the wso2 identity server?

CodePudding user response:

For user related CRUD operations (creation, read, update and delete), in wso2 identity server you can use SCIM2.0 /Users API enter image description here

After creating the role, you can assign the role to the user who wants to manage users. Once done you can get a token for that user and use that token to authenticate the SCIM User APIs mentioned in this doc and manage users.

  • Related