You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The same article suggests the following solution, which would require rewriting the URI calls that occur in net.rcarz.jiraclient.Issue#getCreateMetadata
Modify the calls the integrations use to the following:
RETURN A LIST OF PROJECTS
/rest/api/2/project
RETURN A LIST OF ISSUE TYPES GIVEN A PROJECT
/rest/api/2/issue/createmeta/{projectIdOrKey}/issuetypes
RETURN A LIST OF FIELDS GIVEN A PROJECT AND AN ISSUE TYPE
/rest/api/2/issue/createmeta/{projectIdOrKey}/issuetypes/{issueTypeId}
The text was updated successfully, but these errors were encountered:
However as you say the client constructs the issue using the /rest/api/2/issue/createmeta/ endpoint with query params for project and issue type (by name rather than ID) that has now been removed
Looks like
net.rcarz.jiraclient.JiraClient#createIssue
is broken with JIRA version 9.I found some documentation that outlines why the endpoint has been removed: https://confluence.atlassian.com/jiracore/createmeta-rest-endpoint-to-be-removed-975040986.html
The same article suggests the following solution, which would require rewriting the URI calls that occur in
net.rcarz.jiraclient.Issue#getCreateMetadata
The text was updated successfully, but these errors were encountered: