Setup: Jira Server version 9.6.0.
I'm doing a POST to the issue/{issue_id}/transitions endpoint using the Python requests module. The code works when I post to a test project, but when I post to the production project I get a 400 return code and get an error:
"Could not load FunctionProvider class"
I Googled the error, but didn't find anything relevant.
For information, here is the POST data (tried to format it - that didn't work)
post_data = {
"transition": {
"id": transition_id
},
"update": {
"comment": [
{
"add": {
"body": comment
}
}
]
}
}