skip to Main Content

Azure – SCIM / Entra ID Provisioning: How to remove user attributes in the target system?

GET Users/{Id} returns the following json: { "schemas": [ "urn:ietf:params:scim:schemas:core:2.0:User" ], "id": "16960d38-728d-4865-925c-165caf50708d", "externalId": "16960d38-728d-4865-925c-165caf50708d", "userName": "[email protected]", "name": { "givenName": "", "familyName": "Foo" }, "active": true } When I change the value of the "familyName" or "givenName" attribute in MS…

VIEW QUESTION

Azure – Calling an ASP.NET Core Web API integrated to EntraId app from another .NET Core console app integrated to EntraId app fails

I have created an ASP.NET Core Web API and registered it in EntraID and configured it in my program.cs as follows: builder.Services .AddAuthentication(JwtBearerDefaults.AuthenticationScheme) .AddMicrosoftIdentityWebApi(builder.Configuration.GetSection("AzureAd")); builder.Services.AddAuthorization(); Then I have registered another app in the EntraId and configured the code in the…

VIEW QUESTION

Azure – Read 'Attribute & Claims' from SAML Entra application configuration using PowerShell

I want to read 'Attribute & Claims' from SAML enterprise application configuration using PowerShell. I have found the Graph command Get-MgBetaServicePrincipalClaimMappingPolicy: https://learn.microsoft.com/en-us/graph/api/serviceprincipal-list-claimsmappingpolicies?view=graph-rest-beta&tabs=powershell but it always return empty value, even if I can see that attributes are configured in Azure Portal.…

VIEW QUESTION
Back To Top
Search