Public/SharedHierarchy.ps1
|
<# .SYNOPSIS Get ClickUp shared hierarchy. .DESCRIPTION Get ClickUp shared hierarchy. Returns all resources you have access to where you don't have access to its parent. For example, if you have a access to a shared task, but don't have access to its parent list, it will come back in this request. .EXAMPLE PS C:\> Get-ClickUpSharedHierarchy -TeamID 123 Returns all ClickUp resources you have access to where you don't have access to its parent. .INPUTS None. This cmdlet does not accept any input. .OUTPUTS System.Object .OUTPUTS System.Array .NOTES See the link for information. Returns all resources you have access to where you don't have access to its parent. For example, if you have a access to a shared task, but don't have access to its parent list, it will come back in this request. .LINK https://developer.clickup.com/reference/sharedhierarchy #> function Get-ClickUpSharedHierarchy { [CmdletBinding()] [OutputType([System.Object], [System.Array])] param ( [Parameter(Mandatory = $true)] [ulong]$TeamID ) Write-Verbose 'Entering Get-ClickUpSharedHierarchy' try { Write-Verbose "Getting shared hierarchy for team ID: $TeamID" $SharedHierarchy = Invoke-ClickUpAPIGet -Endpoint "team/$TeamID/shared" Write-Verbose 'Successfully retrieved shared hierarchy' return $SharedHierarchy.shared } catch { Write-Error "Error in Get-ClickUpSharedHierarchy: $($_.Exception.Message)" throw $_ } } |