Error observed whiel creating ticket using Rest Jira API

Pramod Kumar Velayudhan November 22, 2019

Using the below python script gives an error message, can someone help me out.

Json validation was done and it works

import requests
from requests.auth import HTTPBasicAuth
import json

def create_ticket():
baseurl = "https://xxxx.atlassian.net/rest/api/latest/issue/"
headers = {
"Content-Type": "application/json"
}
summary = "Test API ticket"
description = " Created test ticket through Jira API"
auth = HTTPBasicAuth("xxx", "xxxx")
data = ''' {
"fields": {
"project": {
"key": "ABC"
},
"summary": "%s",
"description": "%s",
"issuetype": {
"name": "Incident"
},
"customfield_13405": {
"value": "Monitors"
},
"customfield_10325": {
"value": "S3 - Medium"
},
"customfield_11401": {
"value": "Production"
},
"components": [{
"name": "NOC Incident"
}],
"customfield_10308": {
"value": "xxxx"
},
"customfield_16302": {
"value": "xxx"
}
}
} ''' % (summary, description)
response = requests.post(baseurl, headers=headers, data=json.dumps(data), auth=auth)
print(response.text)

 

{"errorMessages":["Can not instantiate value of type [simple type, class com.atlassian.jira.rest.v2.issue.IssueUpdateBean] from JSON String; no single-String constructor/factory method"]}

1 answer

0 votes
Shannon S
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
November 25, 2019

Hello @Pramod Kumar Velayudhan,

Thank you for contacting us. 

What exactly are you trying to do with the REST-API?

We can help you here to ensure that you've got the right endpoint, but if you're trying to develop something for Jira with Python, you might want to check out the Atlassian Developer Community instead. In that Community, you'll find more folks who are familiar with developing for Atlassian and will be able to help you out. 

Regards,

Shannon

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events