I want to use SCIM to synchronize user password changes in Okta with other app like as Active Directory (AD).
In reviewing SCIM as a solution, I found that the integration often requires replicating users to the SCIM database, since a PATCH operation to SCIM typically starts with a GET request to retrieve the user data. Is it possible to avoid this initial GET request?
What is the best and most appropriate way to cover this use case?
This forces me to replicate the user data in SCIM or, alternatively, redirect the GET operation internally to consume the user data directly from Okta (in my case Okta is the source of truth for the identities).