What is the 'LinkedIn Application' in the tenant deletion window?

Brady Donovan 41 Reputation points
2019-11-07T03:55:51+00:00

Hello! What is the 'LinkedIn Application' shown in this screen (see attachment)? I'm attempting to delete my tenant right now and this is preventing me from doing so. I'm prompted to delete it, which is fine, but I want to know what it is and how I can examine the object further before I delete it. Ideally I'd like to expose some level of detail in to what this is through the Azure CLI. Additionally, I'm wondering if it is possible to demonstrate what information has been shared with LinkedIn.

Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
19,677 questions
0 comments No comments
{count} votes

Accepted answer
  1. Shashi Shailaj 7,581 Reputation points Microsoft Employee
    2019-11-07T17:55:33.387+00:00

    Hello

    The LinkedIn Application shown in this screen signifies that you have enabled LinkedIn integration within your Azure AD tenant from the setting below.

    alt text

    Once this is enabled , the linkedin application gets added to the tenant . You can use the following Azure CLI command to find more information about it from your directory.

    • Please use

    az login --tenant 'tenantname'.onmicrosoft.com

    • After this use the below command to find more information about the existing LinkedIn application.

    az ad app list --display-name linkedin --output jsonc

    • This will list you the details of the linkedin related application as you would like to check. The output would be in Json. The same can be done using Powershell module for AzureAD graph using Get-AzureADapplication cmdlet. Ideally this method would work if you also had enabled Linkedin Learning.
    • In case you have not enabled this at all , then you should use the following to find all the linked in connection application.

    az ad sp list --query "[]" --display-name "O365 LinkedIn Connection" --all -o json

    In my tenant it gives the output like.
    alt text
    Now coming back to your question about what level of data you / one of your users might have exposed to linkedin is as below.

    • Profile Data
    • CAlender Data
    • Interests Data based on our usage of Cortana and Bing for business.
    • Contacts Data.

    The retention of this data is temporary for showing you relevant insights and the latest about the people you work with everyday to enhance information about your professional network which will make it easy to initiate a more meaningful conversation with them.

    The contacts data is something that does not get deleted and the linkedin user account which imported the data must explicitly delete it from their side . I have added the relevant links which you can check to understand more.

    Hope this helps and answers your query.

    Thank you.

    6 people found this answer helpful.

0 additional answers

Sort by: Most helpful