Skip to main content

Remove-AtriaWorkSpaceItemCustomerRelationship

SYNOPSIS

Removes the relationship between a workspace item and a customer in the Atria workspace service.

SYNTAX

Remove-AtriaWorkSpaceItemCustomerRelationship -ItemId <Int> -CustomerId <Int> [<CommonParameters>]

DESCRIPTION

Deletes an existing relationship between a specified workspace item and customer by invoking the Atria API.

PARAMETERS

  • ItemId <Int> (Required)
    The unique identifier (ID) of the workspace item to remove from the customer.

  • CustomerId <Int> (Required)
    The unique identifier (ID) of the customer from whom the workspace item will be removed.

  • <CommonParameters>
    Supports common parameters:
    Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable.

    More info: about_CommonParameters.

OUTPUTS

Returns the response object confirming the deletion of the relationship.

EXAMPLES

Example 1

PS> Remove-AtriaWorkSpaceItemCustomerRelationship -ItemId 123 -CustomerId 456

Removes the relationship between the workspace item with ID 123 and customer ID 456.

NOTES

Ensure you've authenticated using Connect-AtriaApi before invoking this function.