| Using powershell, you can easily reproduce this. assumptions: anonymous access is completely disabled $theCredentials = "user:****USERTOKEN****"; $basicAuth = "Basic " + [System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes($theCredentials)) $headers = @ { "Authorization" = $basicAuth } Invoke-WebRequest -Method "Post" -Uri "http://jenkinsstaging.mycompany.com:8000/job/COMPILE_CHANGE-2297/enable" -Headers $headers This works, but then the call is redirected to the issue page without the auth headers - causing a 403 unauthorized. This should respond with a 200 |