I am using REST API via the HTTP to create a JIRA issue everytime a response is submitted to a MS Form and the issue is getting created successfully.
However, one of the custom fields (short text) is not updated although the request body has the value to be set to this field (highlighted).
There is no error or failures shown on the POST request and the JIRA issue does get created.
Only the "customfield_11605" is blank although, you can see in the payload below the data that has been passed.
{
"fields": {
"project": {
"key": "ABCD"
},
"summary": "Summary 05111637",
"description": {
"type": "doc",
"version": 1,
"content": [
{
"type": "paragraph",
"content": [
{
"type": "text",
"text": "test description"
}
]
}
]
},
"issuetype": {
"name": "Epic"
},
"reporter": {
"id": "xxxxxxx"
},
"customfield_10928": [
{
"value": "BIL"
}
],
"customfield_11605": [
{
"value": "New Code not mapping"
}
],
"customfield_11582": [
{
"value": "Nominal Ledger Code"
},
{
"value": "Analysis Code"
}
]
}
}
I've checked everything and the field is present in the Create/ Edit and View screens of the issue.
Here's the flow of events and showing success at last run.