How to list Azure AD enterprise applications with user provisioning enabled

Khalil Gahbiche 21 Reputation points
2021-10-22T14:17:56.807+00:00

Hi all,

Is there a way (Graph, PowerShell, etc.) to retrieve Azure AD enterprise applications that has user provisioning enabled on them ?

Thanks.

Microsoft Security Microsoft Entra Microsoft Entra ID
{count} votes

2 answers

Sort by: Most helpful
  1. AmanpreetSingh-MSFT 56,866 Reputation points Moderator
    2021-10-25T11:51:08.913+00:00

    Hi @Khalil Gahbiche • Thank you for reaching out.

    Unfortunately, there is no Graph call or PowerShell cmdlet to get list of enterprise applications on the basis of provisioning status. Since there is no property that contains information about provisioning status, you cannot apply a filter using $filter graph parameter.

    The list of servicePrincipal properties which support $filter are documented HERE

    Currently provisioning details can be fetched on per servicePrincipal basis by using below graph calls:

    https://graph.microsoft.com/beta/servicePrincipals/object_id_of_enterprise_app/synchronization/jobs  
    https://graph.microsoft.com/beta/servicePrincipals/object_id_of_enterprise_app/synchronization/templates  
    

    You may post a feedback regarding this at Azure Feedback Portal, which is monitored by Azure product groups for product enhancements.

    -----------------------------------------------------------------------------------------------------------

    Please "Accept the answer" if the information helped you. This will help us and others in the community as well.

    0 comments No comments

  2. Leigh Andrews 21 Reputation points
    2025-02-14T11:06:33.7966667+00:00

    Get-AzureADApplication | Where-Object { $_.ProvisioningOptions -contains "SCIM" } | Select-Object DisplayName, AppId, ProvisioningOptions

    This will list the application containing SCIM.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.