Remove-AtriaWorkSpaceCustomerItem
SYNOPSIS
Removes a specific workspace item from a customer in the Atria workspace service.
SYNTAX
Remove-AtriaWorkSpaceCustomerItem -CustomerId <Int> -listItemId <Int> [<CommonParameters>]
DESCRIPTION
Deletes a workspace item assigned to a customer by invoking the Atria API. Only the assignment is removed�this does not delete the global item definition.
PARAMETERS
-
CustomerId
<Int>
(Required) The unique identifier (ID) of the customer from whom the item should be removed. -
listItemId
<Int>
(Required) The unique identifier (ID) of the workspace list item to remove from the customer. -
<CommonParameters>
Supports common parameters:Verbose
,Debug
,ErrorAction
,ErrorVariable
,WarningAction
,WarningVariable
,OutBuffer
,PipelineVariable
, andOutVariable
. More info: about_CommonParameters.
OUTPUTS
Returns the result of the API call confirming the removal or error information.
EXAMPLES
Example
Remove-AtriaWorkSpaceCustomerItem -CustomerId 1234 -listItemId 5678
Removes the assignment of workspace item ID 5678
from customer 1234
.
NOTES
Ensure you've authenticated using Connect-AtriaApi
before invoking this function.