
AbhishekK.33990 (Customer) asked a question.
The following article gives an example of how Okta can be configured to populate a multi-valued attribute in SCIM when it tries to create a user object:
This question is about checking if the reverse is possible in Okta?
For example, when Okta SCIM creates a user with the SCIM server, the server sends a sample response like this:
{ "phoneNumbers" : [ { "type" : "business", "value" : "+123456789" } ] }
Any guidance on how Okta can be configured to parse such a response and save the above value to an Okta attribute, will be very helpful.
Thank you.

Hello ,
Thanks for posting.
What you are trying to accomplish sounds like the update the user Function.
After the User object is retrieved from the SCIM server, Okta modifies the attributes that were changed and runs a PUT method request with the new body to the /Users/${userID} endpoint.
You can find more information and examples here:
https://developer.okta.com/docs/reference/scim/scim-20/#update-the-user
If you need additional assistance, I suggest you post this question on our Okta Developer Forums: https://devforum.okta.com, this is a place for the Okta developer community to interact.
Let us know if this helps you.
Daniela Chavarria.
Okta Inc.
Thank you Daniela.