Get-AtriaWorkSpaceUserItem
SYNOPSIS
Retrieves workspace items associated with a specific user within a customer.
SYNTAX
Get-AtriaWorkSpaceUserItem -CustomerId <Int> -UserId <Int> [<CommonParameters>]
DESCRIPTION
Retrieves all workspace items assigned to a specified user within the context of a specific customer by invoking the Atria API.
PARAMETERS
-
CustomerId
<Int>
(Required)
The unique identifier (ID) of the customer. -
UserId
<Int>
(Required)
The unique identifier (ID) of the user whose workspace items you want to retrieve. -
<CommonParameters>
Supports common parameters:
Verbose
,Debug
,ErrorAction
,ErrorVariable
,WarningAction
,WarningVariable
,OutBuffer
,PipelineVariable
, andOutVariable
.More info: about_CommonParameters.
OUTPUTS
Returns a collection of workspace items assigned to the specified user.
EXAMPLES
Example 1
PS> Get-AtriaWorkSpaceUserItem -CustomerId 1234 -UserId 5678
Retrieves workspace items assigned to the user with ID 5678
within customer ID 1234
.
NOTES
Ensure you've authenticated using Connect-AtriaApi
before invoking this function.