I'm using the Jira Cloud OpenAPI v2 that I generated using openapi-generator-cli. I followed this guide here: https://blog.developer.atlassian.com/update-to-jira-clouds-swagger-openapi-docs/
My program is able to connect to my test instance of Jira Cloud and return the test project, however upon calling the issue types (project.getIssueTypes()) it returns "null" and I'm a bit confused why this is happening. Here is the snippet of my code:
Naturally the first thought might be, that there aren't any issue types in the project at all. However I selected the scrum template and even inserted a dummy issue type.
How come, my REST client can't return those issue types at all? From the debug variables, you can clearly see, that my client is able to find the project. I'm also using the REST API v2, which is the stable version. I was also confused, why the parameters of the method "searchProjects" varied in the link above in the example from my code.
I found that you need to then get the project, and set expand to be "issues".
e.g.
ApiClient apiClient = new ApiClient();
ProjectsApi projectsApi = new ProjectsApi(apiClient);
ProjectIdentifiers identifiers = projectsApi.createProject(projectInputBean);
Project project = projectsApi.getProject(projectIdentifiers.getId().toString(), "issues", null);
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.