Connect Azure App to Microsoft Partner Center

Tim 1 Reputation point
2022-04-28T08:37:25.76+00:00

Hi. I have created a live app in Azure (https://portal.azure.com/#blade/Microsoft_AAD_IAM/ActiveDirectoryMenuBlade/Overview) with account account1@keyman .com. Clients of the platform who use this app report that in some cases it is indicated that they cannot use this app because the publisher is not verified. According to the documentation (https://learn.microsoft.com/en-us/azure/active-directory/develop/publisher-verification-overview) I should have an option to connect Azure app to my Microsoft Partner Center. However, I don't see the option anywhere to verify my Microsoft Partner Center account, nor to link the Azure app. Microsoft Partner Center account is registered with mail tim@keyman .onmicrosoft.com. Any idea what's wrong here?

Azure Active Directory
Azure Active Directory
An Azure enterprise identity service that provides single sign-on and multi-factor authentication.
14,620 questions
Microsoft Partner Center
Microsoft Partner Center
A Microsoft website for partners that provides access to product support, a partner community, and other partner services.
658 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Alfredo Revilla (MSFT) 18,491 Reputation points Microsoft Employee
    2022-04-28T19:46:30.127+00:00

    Hi @Tim , you should be able to see the required UI under the Branding & properties blade even if your user has not enough permissions. In the latter case you might see some options disabled though.

    As a workaround, you might try using MS Graph calls through Graph Explorer or Postman logging in as a Global Admin, Application Admin or Cloud Application Admin and following these steps:

    1. Write down of your application Object (not app/client) Id using the portal
    2. Use MS Graph application: setVerifiedPublisher call using your application Id and MPN Id: POST https://graph.microsoft.com/v1.0/applications/{APPLICATION ID}/setVerifiedPublisher
      Content-type: application/json {
      "verifiedPublisherId": "MPN ID"
      }

    Please let us know how it goes.

    0 comments No comments