How can I call a JIRA api through Powershell?
Navigate to https://id.atlassian.com/manage-profile/security/api-tokens and create an API token
Then use the following code:
$pair = "me@example.com:<My token here>"
$bytes = [System.Text.Encoding]::ASCII.GetBytes($pair)
$base64 = [System.Convert]::ToBase64String($bytes)
$basicAuthValue = "Basic $base64"
$headers = @{ Authorization = $basicAuthValue }
$json = Invoke-RestMethod -Uri "https://<mydomain>.atlassian.net/rest/api/3/search?jql= <jql here>" -Method Get -Headers $headers
Comments
Post a Comment