Rogueit
Rogueit
@chrisr3d Hey man...if you get a moment...you were able to help me out last time, If you get a chance, could you take a look.
Thanks Chris, I really appreciate your time on this.
Get-JiraIssue -Query 'project = "ITX" AND status != "open"' runs for me. I think enclose the whole thing in single quotes.
This is still a problem and since we can't use the -username switch in strict GDPR mode, the only solution is to implement @fryiee solution. that means manually editing the...
I had to switch to basic auth to get the assignee id number and then switch back to secure string for new-jiraissue
I switched over to basic auth and hitting the api endpoint to get it to work ``` $reporter = "[email protected]" $api = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" $JiraToken = [System.Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes("$Reporter`:$API")) $jira_headers = @{ "Authorization"...
Generally when I get issue does not exist, its because something is wrong in my $cred variable. Here is how i creating my cred ``` $reporter = "[email protected]" $API =...
didn't they just deprecate a bunch of jql endpoints? Or is this something different? [source](https://community.atlassian.com/forums/Jira-questions/Deprecation-of-JQL-search-endpoints-rest-api-3-search/qaq-p/2859040)