Public/Tags/Get-CapaOneTag.ps1

function Get-CapaOneTag {
    [CmdletBinding()]
    param ()
    $BaseUri = "/organizations/{{OrgId}}"
    $response = (Invoke-CapaOneApi -Path "$BaseUri/tag")
    $response.Content
}