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

Set-EntraPartnerInformation -PartnerHelpUrl 'http://www.help.contoso.com'

This command updates the help URL for this partner.

Example 2: Update the Support URL

Set-EntraPartnerInformation -PartnerSupportUrl 'http://www.test1.com'

This command updates the Support URL for this partner.

Example 3: Update the Commerce URL

Set-EntraPartnerInformation -PartnerCommerceUrl 'http://www.test1.com'

This command updates the Commerce URL for this partner.

Example 4: Update the SupportEmails

Set-EntraPartnerInformation -PartnerSupportEmails 'contoso@example.com'

This command updates the SupportEmails for this partner.

Example 5: Update the SupportTelephones

$params = @{
    PartnerSupportTelephones = '234234234'
    TenantId = 'bbbbcccc-1111-dddd-2222-eeee3333ffff'
}

Set-EntraPartnerInformation @params

This command updates the SupportTelephones for this partner.

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