Get-AtriaWorkSpaceCustomerRoleItem
SYNOPSIS
Retrieves workspace items associated with a specific customer role.
SYNTAX
Get-AtriaWorkSpaceCustomerRoleItem -CustomerId <Int> -RoleId <Int> [<CommonParameters>]
DESCRIPTION
Retrieves all workspace items assigned to a specified role for a specific customer by invoking the Atria API.
PARAMETERS
-
CustomerId
<Int>
(Required)
The unique identifier (ID) of the customer. -
RoleId
<Int>
(Required)
The unique identifier (ID) of the role 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 customer role.
EXAMPLES
Example 1
PS> Get-AtriaWorkSpaceCustomerRoleItem -CustomerId 1234 -RoleId 5678
Retrieves workspace items assigned to the role ID 5678
for customer ID 1234
.
NOTES
Ensure you've authenticated using Connect-AtriaApi
before invoking this function.