- Hi,
We have received your permission to access your Atlassian cloud instance. This will help us to investigate and resolve your issues. You may revoke this permission at any time.
Regards,
Atlassian Support
10/Apr/20 6:41 AM
Description
We are planning to intergrade JIRA with our own system through API. As an example we tried below and it successfully woks.
{
“fields”:{
“project”:{
“key”:“TP2”
},
“summary”:“JIRA API TEST EPIC”,
“issuetype”:{
“name”:“Epic”
},
“priority”:{
“name”:“Medium”
},
“customfield_10005”: “JIRA API TEST EPIC”,
“description”:{
“type”:“doc”,
“version”:1,
“content”:[
{
“type”:“paragraph”,
“content”:[
{
“type”:“text”,
“text”:“description”
},
{
“type”:“text”,
“text”:“SOME DESCRIPTION HERE”
}
]
}
]
}
}
}
but our requirement is, our software is supporting simple playloads as below:
{
“project” : “TP2”,
“summary” : “JIRA API TEST EPIC”,
“issuetype” : “Epic”,
“priority” : “Medium”,
“customfield_10005”: “JIRA API TEST EPIC”,
}
Is it possible to do that ? Actually we are planning to write to JIRA as well as read from JIRA both ways.
Is this possible to do that ?
If so,
I want to more details about this. Is it possible to proceed like this ? (I’ve searched some details as below:
https://developer.atlassian.com/server/framework/atlassian-sdk/rest-plugin-module/
but I’ve never tried.
Can you tell me this is possible ? If so, can you provide more details about it for refer. More examples and more details.
Thanks,