Set-EntraPartnerInformation

Sets company information for partners.

Syntax

Set-EntraPartnerInformation
   [-CompanyType <CompanyType>]
   [-PartnerCompanyName <String>]
   [-PartnerSupportTelephones <String[]>]
   [-PartnerSupportEmails <String[]>]
   [-PartnerCommerceUrl <String>]
   [-PartnerSupportUrl <String>]
   [-PartnerHelpUrl <String>]
   [-TenantId <Guid>]
   [<CommonParameters>]

Description

The Set-EntraPartnerInformation cmdlet is used by partners to set partner-specific properties.

These properties can view by all tenants that the partner has access to.

Examples

Example 1: Update the help URL

Connect-Entra -Scopes 'Organization.ReadWrite.All'
Set-EntraPartnerInformation -PartnerHelpUrl 'http://www.help.contoso.com'

This example shows how to update the help URL.

Example 2: Update the Support URL

Connect-Entra -Scopes 'Organization.ReadWrite.All'
Set-EntraPartnerInformation -PartnerSupportUrl 'http://www.test1.com'

This example shows how to update the support URL.

Example 3: Update the Commerce URL

Connect-Entra -Scopes 'Organization.ReadWrite.All'
Set-EntraPartnerInformation -PartnerCommerceUrl 'http://www.test1.com'

This example shows how to update the commerce URL.

Example 4: Update the SupportEmails

Connect-Entra -Scopes 'Organization.ReadWrite.All'
Set-EntraPartnerInformation -PartnerSupportEmails 'contoso@example.com'

This example shows how to update the support email addresses.

Example 5: Update the SupportTelephones

Connect-Entra -Scopes 'Organization.ReadWrite.All'
$tenantId = (Get-EntraContext).TenantId
$params = @{
    PartnerSupportTelephones = '234234234'
    TenantId = $tenantId
}
Set-EntraPartnerInformation @params

This example shows how to update support telephone numbers.

Parameters

-CompanyType

Specifies the partner's company type.

Type:CompanyType
Position:Named
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

-PartnerCommerceUrl

Specifies the URL for the partner's commerce website.

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

-PartnerCompanyName

Specifies the partner's company name.

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

-PartnerHelpUrl

Specifies the URL for the partner's Help website.

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

-PartnerSupportEmails

Specifies the support email address for the partner.

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

-PartnerSupportTelephones

Specifies the support telephone numbers for the partner.

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

-PartnerSupportUrl

Specifies the URL for the partner's support website.

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

-TenantId

Specifies the unique ID of the tenant on which to perform the operation. The default value is the tenant of the current user. This parameter applies only to partner users.

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