Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

Get-EntraContactManager

Gets the manager of a contact.

Syntax

Default (Default)

Get-EntraContactManager

 -OrgContactId <String>
 [-Property <String[]>]
 [<CommonParameters>]

Description

The Get-EntraContactManager cmdlet gets the manager of a contact in Microsoft Entra ID.

For delegated scenarios involving work or school accounts, the signed-in user must have a supported Microsoft Entra role or a custom role with the required permissions. The following least privileged roles support this operation:

  • Directory Readers: Read basic properties
  • Global Reader
  • Directory Writers
  • Intune Administrator
  • User Administrator

Examples

Example 1: Get the manager of a contact

Connect-Entra -Scopes 'OrgContact.Read.All'
$contact = Get-EntraContact -Filter "displayName eq 'Contoso Contact'"
Get-EntraContactManager -OrgContactId $contact.Id

The example demonstrates how to retrieve the manager of a contact. You can use the command Get-EntraContact to get organizational contact.

  • -OrgContactId parameter specifies the contact Id.

Parameters

-OrgContactId

Specifies the ID of a contact in Microsoft Entra ID.

Parameter properties

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

Parameter sets

-Property

Specifies properties to be returned.

Parameter properties

Type:

System.String[]

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

Parameter sets

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.

Related Links


Feedback

Was this page helpful?