The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Create Project in Server with REST API

Matt Benett
Contributor
February 9, 2021

I am trying to create a project using the REST API




curl --request POST \
--url 'https://jira.mydomain.com/rest/api/2/project' \
--user 'admin_user:admin_password' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"description": "Example Project description",
"lead": "myuser",
"url": "http://atlassian.com",
"projectTemplateKey": "com.atlassian.jira-core-project-templates:jira-core-project-management",
"name": "Curl Example",
"assigneeType": "PROJECT_LEAD",
"projectTypeKey": "business",
"key": "ABC004",
"issueSecurityScheme": 10000,
"categoryId": 10300,
"avatarId" : 10324,
"permissionScheme": 0,
"notificationScheme": 10000,
"workflowSchemeId": 10900
}'

 

But I get a internal server error

{"errorMessages":["Internal server error"],"errors":{}}

 

I have used the API to confirm all the projectTemplateKey, issueSecurityScheme, CategoryID,. permissionScheme, notificationScheme and workflowSchemeID are correct values.

 

My searching is not finding anything, does any one have any idea please?

 

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Matt Doar
Community Champion
February 9, 2021

You need a Jira admin to check the log for the precise error but the url looks a bit suspicious. I guess I'd also create a new project from my browser and inspect the REST call and data passed to the server