I implemented the SCIM API and integrated it with Azure.
When I delete a user in AzureAD, it does not send DELETE requests. I tried to remove from the application as well as from the directory.
Get users / [userID], Get request and POST / Users are working fine. I also receive PATCH requests, but since I did not implement PATCH, 404 is returned.
Why doesn't it send DELETE requests? According to Azure AD SCIM, Documentation must send DELETE requests.
How AzureAD tracks the userβs βIdβ attribute sent by the SCIM service is from the βIDβ attribute of the SCIM response or using the Uri in the Meta / Location attribute. The reason for this question is that when I delete a user in AzureAD, how does it recognize the user Id.
source share