Updating a field

Updating another field is as simple as adding another property to the fields object.

Getting field id's

To get the ID's for the Jira fields you can use their API documentation. Make sure the field is added to the correct issue screen for a Jira project and issue type.

HTTP Body

In this case, the default update issue action sequences has been used that is generated for changes. In this case the duedate field is added.

{
  "issue": {
    "fields": {
      "duedate": "2022-10-18",
      "summary": "${briefdescription}",
      "description": "<#list _progresstrail.requests as request>${request.richtext!}</#list>"
    }
  },
  "change": {
    "id": "${unid}",
    "number": "${number}"
  }
}

Last updated