Get-EntraContactManager

Gets the manager of a contact.

Syntax

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

Description

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

Examples

Example 1: Get the manager of a contact

Connect-Entra -Scopes 'OrgContact.Read.All'
$Contact = Get-EntraContact -Top 1
Get-EntraContactManager -OrgContactId $Contact.ObjectId

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.

Type:System.String
Aliases:OrgContactId
Position:Named
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-Property

Specifies properties to be returned.

Type:System.String[]
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False