resolve ticket as fixed with python jira api -
import jira def resolve_issue(jira,issue): jira.transition_issue(issue, '5', assignee={'name': 'pm_user'}, resolution={'id': '3'},comment={'name':"resolved ticket."})) [(u'5', u'resolve issue'), (u'821', u'request info'), (u'1011', u'rejected'), (u'1031', u' duplicate ')] are available transitions. not work resolve issue fixed python jira rest api. have tried list out transitions, don't see 'fixed' resolution id. suggestions? added error below text: can not deserialize instance of java.lang.string out of start_object token at [source: n/a; line: -1, column: -1] (through reference chain: com.atlassian.jira.issue.fields.rest.json.beans.commentjsonbean["body"]) i'm not sure if causing problem have wrap 'assignee' , 'resolution' changes in "fields" dict. have like: fields = { "res...