-
-
Notifications
You must be signed in to change notification settings - Fork 130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add-JiraIssueComment Internally #377
Comments
There is the difference but i see nowhere in which kind of "-visibility" i can put them for internal comment (not viewable by users in jira service desk customer portal. |
I believe any value for the |
I just came across the very same situation - wanted to add an INTERNAL comment (Jira Service Desk, On-Prem Data Center installation) and can't get it to work. |
I would also be very interested in this feature. |
I am also interested in this feature as well as uploading an internal attachment for 'developers or admins' to view |
I'll pile on! I would LOVE this ability. :) |
Any news on this? |
+1 |
This isn't EXACTLY what we are looking for, but it does get the job done (just a little more verbose than using the module). I use this code against Jira Server, not certain if it will work against Jira Cloud. $JiraUsername = "jirauser"
$secJiraPassword = ConvertTo-SecureString $JiraPassword -AsPlainText -Force
$JiraCredentials = New-Object System.Management.Automation.PSCredential ($JiraUsername, $secJiraPassword)
$Body = @{
"body" = "||*Added to today's commitments; Next Steps:*||`n|$($nextsteps)|`n|#TechEstimateInMinutes:$($techestimate)|"
"public" = $false
}
$JsonBody = $Body | ConvertTo-Json
$JsonBody = [System.Text.Encoding]::UTF8.GetBytes($JsonBody)
$RestParams = @{
Method = "Post"
Uri = "https://jiraserver.mydomain.com/rest/servicedeskapi/request/$($key)/comment?nofifyUsers=false"
Body = $JsonBody
ContentType = "application/json"
Credential = $JiraCredentials
Authentication = "Basic"
}
Invoke-RestMethod @RestParams | Out-Null |
Hello team, i got a question where i can't found any reply.
We use could jira and we use a functionality called "Comment Internally" to avoid users seeing our comment on their requests.
I can't se in any issue or wiki how to add an internal comment via jiraps, have you some feature to do this ?
Thanks a lot for your reply,
Alex
The text was updated successfully, but these errors were encountered: