Public/Comments/Get-JBCommentTemplates.ps1
function Get-JBCommentTemplates { <# .SYNOPSIS Gets all available "canned responses" from your Helpdesk #> $Params = @{ Api = "CommentTemplates" } Invoke-JBMethod @Params } |