Hello Everyone,
I am trying to create an automation that whenever a ticket is split a custom field I created will be copied to the new ticket.
Any help on how to fix this will be appreciated.
Hi @Nikolaos Vlachos - I see a couple potential things to look into:
{{triggerIssue.customField_10055}}
Thank you @Mark Segall . Sorry I didn't clarify that in my question. The field that I wanted doesn't appear under the "Choose field to set..." so that is the reason I am trying to do it using Advanced json.
I did try your second suggestion and I am getting the below error:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What is the field type for the custom field?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ok - This makes sense. These are a little more tricky. You want to format the json something like this:
{ "update": { "customField_10055": [ { "set": { "value": "{{triggerIssue.fields.customField_10055.value}}", "child": { "value": "{{triggerIssue.fields.customField_10055.child.value}}" } } } ] } }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Actually, I tried the above and got an error message
I had to specify that I wanted to update the ID of the team. As follows
{
"fields": {
"customfield_10100" : "{{triggerIssue.fields.customfield_10100.id}}"
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you. Appreciated 👍
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.