I'm able to use POST and Get in excel VBA. For post I use the trick to write dummy data to user agent.
But I'm not able to use the PUT request.
In API browser, all goes well. Coding exactly the same in excel is not working.
This is my the part of code:
With JiraAuth
.Open "PUT", "http://beleu-jira01:8080/rest/api/2/issue/SAND-872", False
.setRequestHeader "Content-Type", "application/json"
.setRequestHeader "Accept", "application/json"
.setRequestHeader "User-Agent", "xx"
.setRequestHeader "Authorization", "Basic " & UserPassBase64(J_usernamep, J_Password)
.send StoryData
Authentication is not the problem. When printing storydata, this is the string: { "update":{ "summary":[{"set":"TestUpdateOfIssueViaVBA"}]}}
This looks exactly the same than API browser. What am I doing wrong?
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.