SCIMReferenceCode
SCIMReferenceCode copied to clipboard
Reference code to build a SCIM endpoint to automate provisioning
https://github.com/AzureAD/SCIMReferenceCode/blob/12f21fbe90a09cc7acf8f834da73f482e3af9a34/Microsoft.SystemForCrossDomainIdentityManagement/Service/Controllers/ControllerTemplate.cs#L33 It appears that the status code is being set to 201 here, however, in the ControllerTemplate.Put action, we return an Ok (201) result ... which status code will be...
https://github.com/AzureAD/SCIMReferenceCode/blob/12f21fbe90a09cc7acf8f834da73f482e3af9a34/Microsoft.SCIM.WebHostSample/Provider/InMemoryUserProvider.cs#L331 I noticed in the sample schema, that the userName attribute (as well as I believe in the SCIM specifications..) that the userName attribute is required, however, it (the remove...
I have gotten the sample code to work well however it only really works against one azure ad tenant and also only with the azure issued token and not the...
As I am new to SCIM I am having trouble finding out how to call the SCIM endpoints when I deploy them to Azure App Service. I would like to...
- Add filters for `id` and `displayName` - Fix Postman collections - Fix URLs - Normalize spacing in body of requests
Changes: - Remove "All rights reserved." - Normalize copyright/license header in all files Following the PR 12190 "Update copyright notice to latest guidance" from `PowerShell/PowerShell` repo: https://github.com/PowerShell/PowerShell/pull/12190 Latest guidance is...
Currently, when removing an email in the patch request, if the value in the remove operation not match the current value, the value in the remove operation will be set...
The code from RequestExtensions class quoted below does not make sense, since request?.Headers.TryGetValues(...) call is a "dead code" that has no effect. And judging by this code I doubt that...
Fix null reference while patching phone and address, when customized providers (derived from ProviderBase) are used. The original code handles null or empty child fields of phone number and address....