Search code examples
c#restjirajira-rest-apijira-agile

How to send POST request to JIRA for creating a Project through REST api


I am working on integration JIRA api, how can i create a new project into JIRA through api

from api documentation i can see end points for listing the projects and some other project related activity, but there is no any end point to create a new project into the JIRA.

i have attached a piece of REST API screenshot, in the screenshot there is no any POST url mentioned for creating the project.enter image description here.

For completing my work i am using c#.Net with console based application.

Please help me what i can do into it.


Solution

  • Create Project is not supported yet for REST API. Here's a link as of 2013, and I am not sure if they got it now. Please search over to find if they got it in newer versions. You might have to create a project first in the web application, and work with creating and editing issues etc from your API client. Hope this helps!