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 items connected to a specific user. It helps identify access or relationships between users and items.

PARAMETERS

  • UserId <Int> (Required) The unique identifier of the user whose item 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 items associated with the specified user.

EXAMPLES

Example - View user-to-item associations

Get-AtriaWorkSpaceItemUserRelationship -UserId 1010

Returns a list of workspace items linked to user ID 1010.

NOTES

Use Connect-AtriaApi to authenticate before using this function.