Skip to main content

Remove-AtriaWorkSpaceListItem

SYNOPSIS

Removes a workspace item from a specific workspace list.

SYNTAX

Remove-AtriaWorkSpaceListItem -ListId <Int> -ItemId <Int> [<CommonParameters>]

DESCRIPTION

Deletes the association between a specified workspace item and a workspace list by calling the Atria API.

PARAMETERS

  • ListId <Int> (Required)
    The unique identifier (ID) of the workspace list from which the item will be removed.

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

  • <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 successful removal of the workspace item from the list.

EXAMPLES

Example 1

PS> Remove-AtriaWorkSpaceListItem -ListId 101 -ItemId 202

Removes the workspace item with ID 202 from the workspace list with ID 101.

NOTES

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