Edit

Share via


Get-EntraServicePrincipalOwnedObject

Gets an object owned by a service principal.

Syntax

Default (Default)

Get-EntraServicePrincipalOwnedObject

    -ServicePrincipalId <String>
    [-All]
    [-Top <Int32>]
    [-Property <String[]>]
    [<CommonParameters>]

Description

The Get-EntraServicePrincipalOwnedObject cmdlet retrieves an object owned by a service principal in Microsoft Entra ID.

Examples

Example 1: Retrieve the owned objects of a service principal

Connect-Entra -Scopes 'Application.Read.All'
$servicePrincipal = Get-EntraServicePrincipal -Filter "displayName eq 'Helpdesk Application'"
Get-EntraServicePrincipalOwnedObject -ServicePrincipalId $servicePrincipal.Id | Select-Object Id, DisplayName, '@odata.type'
Id                                   displayName          @odata.type
--                                   -----------          -----------
cccccccc-2222-3333-4444-dddddddddddd Contoso Application #microsoft.graph.servicePrincipal

The command retrieves the owned objects of a service principal.

  • -ServicePrincipalId Parameter specifies the ID of a service principal.

Example 2: Retrieve the all owned objects of a service principal

Connect-Entra -Scopes 'Application.Read.All'
$servicePrincipal = Get-EntraServicePrincipal -Filter "displayName eq 'Helpdesk Application'"
Get-EntraServicePrincipalOwnedObject -ServicePrincipalId $servicePrincipal.Id -All | Select-Object Id, DisplayName, '@odata.type'
Id                                   displayName          @odata.type
--                                   -----------          -----------
cccccccc-2222-3333-4444-dddddddddddd Contoso Application #microsoft.graph.servicePrincipal

This example retrieves an object owned by a service principal in Microsoft Entra ID. You can use the command Get-EntraServicePrincipal to get service principal Id.

  • -ServicePrincipalId parameter specifies the ID of a service principal.

Example 3: Retrieve top one owned object of a service principal

Connect-Entra -Scopes 'Application.Read.All'
$servicePrincipal = Get-EntraServicePrincipal -Filter "displayName eq 'Helpdesk Application'"
Get-EntraServicePrincipalOwnedObject -ServicePrincipalId $servicePrincipal.Id -Top 1 | Select-Object Id, DisplayName, '@odata.type'
Id                                   displayName          @odata.type
--                                   -----------          -----------
cccccccc-2222-3333-4444-dddddddddddd Contoso Application #microsoft.graph.servicePrincipal

This example retrieves the top one owned object of a specified service principal in Microsoft Entra ID. You can use -Limit as an alias for -Top.

  • -ServicePrincipalId parameter specifies the ID of a service principal.

Parameters

-All

List all pages.

Parameter properties

Type:System.Management.Automation.SwitchParameter
Default value:False
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-Property

Specifies properties to be returned.

Parameter properties

Type:

System.String[]

Default value:None
Supports wildcards:False
DontShow:False
Aliases:Select

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-ServicePrincipalId

Specifies the ID of a service principal in Microsoft Entra ID.

Parameter properties

Type:System.String
Default value:None
Supports wildcards:False
DontShow:False
Aliases:ObjectId

Parameter sets

(All)
Position:Named
Mandatory:True
Value from pipeline:True
Value from pipeline by property name:True
Value from remaining arguments:False

-Top

Specifies the maximum number of records to return.

Parameter properties

Type:System.Int32
Default value:None
Supports wildcards:False
DontShow:False
Aliases:Limit

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:True
Value from pipeline by property name:True
Value from remaining arguments:False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

Notes

You can use the command Add-EntraServicePrincipalOwner to add an owner to a service principal.