Questions tagged [azure-ad-b2b]

197 questions
1
vote
1 answer

Add User as owner of Azure AD Group through REST API

Is it possible to add the owner to the Azure AD group from any REST API? I think I should have one service principal and I have to generate an access token to do that. I tried to generate access token and used below query to add owner via…
Shashank
  • 35
  • 5
1
vote
1 answer

Getting 400 Bad Request error while trying to move Azure resources via Postman

I am trying to move resources from one resource group to another via Postman. I got the access token successfully by using below…
1
vote
1 answer

Unable to fetch ID of SharePoint API permissions

I am trying to fetch GUID of ProjectWebApp.FullControl and ProjectWebAppReporting.Read and add them to Sharepoint Api group. I tried using below command to find IDs: $result = Get-AzureADServicePrincipal -All $true | ? { $_.DisplayName -eq "Office…
Sindhu M S
  • 15
  • 3
1
vote
1 answer

How to allow external users to sign in to an app that is secure by Microsoft identity using Azure AD

I have an app (ASP.Net Classic) that is using Azure AD authentication. Now, we want to allow user outside of the organization to sign in. I read few document B2C and B2B, but I am unable to see which one to good for me. I am looking that members…
Jashvita
  • 553
  • 3
  • 24
1
vote
1 answer

Multi tenant microservice architecture using azure AD

When developing a microservice mutli tenant architecture there will be many APIs for each service. When using azure AD for authentication this would mean then an app registration per service API and an app registration for a client app. These would…
1
vote
1 answer

PowerBI, Azure AD and keycloak authentication. Using keycloak as Idps to log into Power BI

I am not an Azure expert and I am starting to get familiar with Azure AD, so this question is also to clarify some questions I have. My objective in stories: The user logs in keycloak The user gets on a web application The user clicks on the Power…
1
vote
1 answer

Using Azure B2B for our Customer portal

In our mechanical engineering company we are building a customer portal, where our customers should find documentation for their equipment. This documentation is natively hosted in SharePoint Online. Here we create a site collection for each machine…
David Mason
  • 915
  • 1
  • 9
  • 27
1
vote
1 answer

How can I grant user consent to a 3rd party enterprise application via Azure PowerShell?

We have an Azure PowerShell script to automate the provisioning of resources in our customers' subscription. As part of the process we deploy a VM based off a custom image hosted in our own image gallery. In order to do so we require our customers…
1
vote
1 answer

Authorization Azure AD B2C

How does one achieve authorization for an api using Azure B2C? Authentication The setup in Azure AD b2c: web: login api: GetStuff web->sign-in>azure userflow:signinpolicy -(success)-> token = AccessTokenForUser("scope1","scope2"..) call…
Tomas Hesse
  • 385
  • 3
  • 10
1
vote
1 answer

Unable to complete due to service connection error - Azure AD

I was follwing the steps in the title "Add an allow list" in https://learn.microsoft.com/en-us/azure/active-directory/external-identities/allow-deny-list As listed in steps 1.Sign in to the Azure portal. 2.Select Azure Active Directory > Users >…
1
vote
1 answer

Is there a way using powershell or Graph API to obtain information about the creator of application in Azure AD?

Is there a way using powershell or Graph API to obtain information about the user who created or registered an application in Azure AD?
1
vote
1 answer

SPFx web part with Graph API not returning Guest user companyName

Having assigned the User.Read.All permission to a SPFx web part, and Approving it in SPO Admin portal, and also making it a Configured permission (and consenting) it in AD App registration, I'm still not able to query properties such as companyName…
1
vote
1 answer

Is it possible to secure only specific API Routes?

I have a Angular version 9.1.9 ClientApp and have .net-core web api. I am using the msal for angular library and azure ad b2c. Is it possible to only protect a specific route i.e. /api/GetProfile but not /api/GetCar ? My question is not in reference…
lightbulb112
  • 123
  • 1
  • 9
1
vote
1 answer

Why are Invitation emails sent via MS Graph to external (b2b/guest) users not sent to TO+CC addresses (any more)?

I have an application configured within a AzureAD B2B tenancy that has the appropriate permissions (user.readwrite.all, user.invite.all) to send Invitations out to external (guest) users. Those invitations are configured to send an email including a…
Ramon
  • 11
  • 4
1
vote
1 answer

How to auto populate email field on mfa page when display control is used in custom policies

I have to use custom email template so I added a display control in my custom policy, now I have following issues because of this. When user logs in, mfa page with empty text box appears. I would like it to be auto populated. I followed the steps…