Hi,
I want to update a customfield with jira rest. Here is the url:
url = http://localhost:8080/rest/api/2/issue/ATL-545/editmeta
I am trying this: { \"fields\": {\"customfield_10609\": \""+Body+"\"}}
But I am getting 405 Error. How can I solve it?
Thanks in advance
editmeta is used to retrieve the fields available for editing. To update, you should use PUT on issue key.
See https://developer.atlassian.com/display/JIRADEV/JIRA+REST+API+Example+-+Edit+issues for some examples.
In the documentation, it's mentioned that you can use editmeta only to get data not PUT or POST
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.