Get-EntraBetaContactManager
Gets the manager of a contact.
Syntax
Default (Default)
Get-EntraBetaContactManager
-OrgContactId <String>
[-Property <String[]>]
[<CommonParameters>]
Description
The Get-EntraBetaContactManager
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-EntraBetaContact -Filter "displayName eq 'Contoso Contact'"
Get-EntraBetaContactManager -OrgContactId $contact.Id
The example demonstrates how to retrieve the manager of a contact. You can use the command Get-EntraBetaContact
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: | ObjectId |
Parameter sets
(All)
Position: | Named |
Mandatory: | True |
Value from pipeline: | True |
Value from pipeline by property name: | True |
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 |
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.