Okta User Profile Update

I am using Okta C # sdk for development. I created some custom user profile attributes in Okta. I can create a user and save the values ​​in user attributes. But, as I understand it, when you update your profile data, you need to provide all the details again. If you specify the value of certain attributes, then the other attributes are set to null. So, how can I update only one or two attributes so that others do not change.

+4
source share
1 answer

Dinesh. You can use POST / users /: id if you want to do a partial update. Make sure that you do not use PUT for this operation , otherwise you will destroy the remaining values ​​that are not in the request

+3
source

All Articles