Get-EntraPartnerInformation

Retrieves company-level information for partners.

Syntax

Get-EntraPartnerInformation
 []
Get-EntraPartnerInformation
   [-TenantId <Guid>]
   [<CommonParameters>]

Description

The Get-EntraPartnerInformation cmdlet is used to retrieve partner-specific information. This cmdlet should only be used for partner tenants.

Examples

Example 1: Retrieve partner information

Connect-Entra -Scopes 'Organization.Read.All'
Get-EntraPartnerInformation

PartnerCompanyName       : Contoso
companyType              :
PartnerSupportTelephones : {12123, +1911}
PartnerSupportEmails     : {}
PartnerHelpUrl           : http://www.help.contoso.com
PartnerCommerceUrl       :
ObjectID                 : bbbbbbbb-1111-2222-3333-cccccccccccc
PartnerSupportUrl        :

This command retrieves partner-specific information.

Example 2: Retrieve partner information with specific TenantId

Connect-Entra -Scopes 'Organization.Read.All'
$tenantId = (Get-EntraContext).TenantId
Get-EntraPartnerInformation -TenantId $tenantId

PartnerCompanyName       : Contoso
companyType              :
PartnerSupportTelephones : {12123, +1911}
PartnerSupportEmails     : {}
PartnerHelpUrl           : http://www.help.contoso.com
PartnerCommerceUrl       :
ObjectID                 : bbbbbbbb-1111-2222-3333-cccccccccccc
PartnerSupportUrl        :

This command retrieves partner-specific information.

-TenantId Parameter specifies unique ID of the tenant to perform the operation on.

Parameters

-TenantId

The unique ID of the tenant to perform the operation on. If this is not provided, then the value will default to the tenant of the current user. This parameter is only applicable to partner users.

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

Outputs

Company level information outputs

  • CompanyType: The type of this company (can be partner or regular tenant)
  • DapEnabled: Flag to determine if the partner has delegated admin privileges
  • PartnerCompanyName: The name of the company
  • PartnerSupportTelephones: Support Telephone numbers for the partner
  • PartnerSupportEmails: Support E-Mail address for the partner
  • PartnerCommerceUrl: URL for the partner's commerce web site
  • PartnerSupportUrl: URL for the Partner's support website
  • PartnerHelpUrl: URL for the partner's help web site