Hi guys,
I have Jira server in my organization, and I would like to call API to open issues on Jira from my internal CMP system, intead of open it manually via Jira GUI.
How can I get the API list and instructions to use them?
Thanks
Afonso.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Afonso Neto Here is the Jira Server API Create Issue Doc :
https://developer.atlassian.com/server/jira/platform/jira-rest-api-example-create-issue-7897248/
curl -D- -u fred:fred -X POST --data {see below} -H "Content-Type: application/json" http://localhost:8090/rest/api/2/issue/
{
"fields": {
"project":
{
"key": "TEST"
},
"summary": "REST ye merry gentlemen.",
"description": "Creating of an issue using project keys and issue type names using the REST API",
"issuetype": {
"name": "Bug"
}
}
}
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.
Hi @Afonso Neto ,
Do you mean, want to create jira tickets from your internal CMP system? If yes, you can use jira rest API to create/open jira tickets.
Rest API referrence @ https://docs.atlassian.com/jira-software/REST/9.10.0/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Join the largest European gathering of the Atlassian Community and reimagine what’s possible when great teams and transformative technology come together. Plus, grab your Super Fan ticket now and save over €1,000 on your pass before prices rise on 3 June.
Register nowOnline 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.