hi how can i add an issue to a sprint using python rest api. this is what I have.
issue_dict = {
'project': {'key': 'PROYEJ'},
'summary': 'Update test',
'description': 'Not important',
'issuetype': {'name': 'Bug'},
'customfield_10300' : '2015-07-03T14:08:00.000-0500', #working date time picker field
}
new_issue = jira.create_issue(fields=issue_dict)
Thks.
Hello @Juan Peñailillo
Thank you for reaching out.
You can check in our Rest API documentation the instructions and the following example to configure your REST API using Python:
Additionally, since this is a question about external resource management which is usually used to integrate external apps, I believe the best place to ask for help would be in the Atlassian Developer Community:
https://community.developer.atlassian.com/
The mentioned portal was specifically created for development and integration questions, where you will find articles and suggestions from other third-party partners and Atlassian developers. Feel free to open a new topic about your question there! :)
Let us know if you have any other questions.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.