Skip to main content

Remove-AtriaWorkSpaceCustomerItem

SYNOPSIS

Removes a workspace item assigned to a specific customer.

SYNTAX

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

DESCRIPTION

Deletes the association of a workspace item from a customer by calling the appropriate Atria API endpoint. This does not delete the global definition of the item, only the customer's access to it.

PARAMETERS

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

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

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

OUTPUTS

Returns the result of the API call confirming the removal or any relevant error message.

EXAMPLES

Example 1

Remove-AtriaWorkSpaceCustomerItem -CustomerId 1234 -ItemId 5678

Removes the assignment of workspace item 5678 from customer 1234.

NOTES

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