I implemented SCIM API and integrated with Azure.
When I delete a user in AzureAD it does not send DELETE requests. I tried deleting from the application as well as from the directory.
Get Users/[userID], Get Query, and POST /Users working fine. Also I am getting PATCH requests as well, but since I have not implemented PATCH returns 404.
Why it's not sending DELETE requests? As per the Azure AD SCIM Documentation it should send DELETE requests.
How does AzureAD track the "Id" attribute of User sent by SCIM service, is it from the "Id" attribute of SCIM response or with the Uri in Meta/Location attribute. Reason for this question is that when I delete a user in AzureAD how is it going to know the Id of the user.