public/api-v2/comment/Invoke-JiraDeleteComment.ps1
#https://developer.atlassian.com/cloud/jira/platform/rest/v2/#api-rest-api-2-issue-issueIdOrKey-comment-id-delete function Invoke-JiraDeleteComment { [CmdletBinding()] param ( # The issue Id or Key [Parameter(Mandatory,Position=0)] [string] $IssueIdOrKey, # The ID of the comment to retrieve [Parameter(Mandatory,Position=1)] [string] $CommentId, # The JiraConnection object to use for the request [Parameter(Position=2)] [hashtable] $JiraConnection ) process { $functionPath = "/rest/api/2/issue/$IssueIdOrKey/comment/$CommentId" $verb = "DELETE" Invoke-JiraRestMethod $JiraConnection $functionPath $verb } } |