copy field X value A to field Y value

Maurice Stassen November 25, 2020

How can i copy a field value using an automation rule with "More options" "Additional Fields" ?

I want to set the value of the field "Account" (tempo field) to the same vale as the Jira custom field "Company Code".

 

I tried this:

{
  "update": {
    "Account": [
      {
        "set": {"value": "issue.Company Code"}
      }
    ]
  }
}

 

But this gives me an error:

Action details:

Edit issue

Error editing issuesWNG-1109 (Can not deserialize instance of java.lang.Long out of START_OBJECT token at [Source: N/A; line: -1, column: -1] (io.tempo.jira__account))

1 answer

1 accepted

1 vote
Answer accepted
Bill Sheboy
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 25, 2020

Hi @Maurice Stassen 

You appear to be missing the curly brackets around the smart value for your field.  Please try this one for your JSON.

{
    "fields": {
        "Account": {{issue.Company Code}}
    },
}

Here is the documentation on using the advanced editing with JSON to give you more ideas:

https://support.atlassian.com/jira-software-cloud/docs/advanced-field-editing-json/

 

Also, if you are unsure about the names of the smart value for your fields, you can try this technique to identify them:

https://support.atlassian.com/jira-software-cloud/docs/find-the-smart-value-for-a-field/

Best regards,

Bill

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PERMISSIONS LEVEL
Site Admin
TAGS
AUG Leaders

Atlassian Community Events