Skip to main content

Get-AtriaWorkSpaceItemUserRelationship

SYNOPSIS

Retrieves the list of users associated with a specific workspace item.

SYNTAX

Get-AtriaWorkSpaceItemUserRelationship -UserId <Int> [<CommonParameters>]

DESCRIPTION

This function queries the Atria API to return all workspace users who have the specified item assigned. It helps identify access or relationships between users and items.

PARAMETERS

  • ItemId <Int> (Required) The unique identifier of the item for which user relationships should be retrieved.

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

OUTPUTS

Returns a list of workspace users associated with the specified item.

EXAMPLES

Example - View user-to-item associations

Get-AtriaWorkSpaceItemUserRelationship -ItemId 1010

Returns a list of workspace Users linked to Item ID 1010.

NOTES

Use Connect-AtriaApi to authenticate before using this function.