Hello I would like get help on editing a custom field as soon as a ticket is created with a condition found on the freshservice ticket?
Yes I am creating an automation that when I Jira ticket is created and a condition is set then the automation edits the issue by selecting a Ticket Type and Category? But when I select edit issue under Choose fields I can't find the fields I am looking for.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes I am creating an automation that when I Jira ticket is created and a condition is set then the automation edits the issue by selecting a Ticket Type and Category? But when I select edit issue under Choose fields I can't find the fields I am looking for.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Mike - Welcome to the Atlassian Community!
What exactly is your process and what exactly are you wanting to do and when?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello John, yes the fields where created in the custom field section and they were added to the project. I can open the ticket and edit it manually.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Which Category field are you trying to use? If it is the one on Jira Work Management projects, that field is not currently available in automation.
What type of field is the Ticket Type field?
Is this project a Company-managed or Team-managed project?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
the projects are under Company-Managed. The Ticket Type is a Selected List ( cascading) type.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for your help John,
I was able to create the JSON scrpt:
{
"update": {
"Ticket Type": [
{
"set": {
"value": "Freshservice",
"child": {
"value": "Service Request"
}
}
}
]
}
}
This works with conitinals. Would like to know if there was a way to use regular expression from the comment to fill the values.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Want to make your everyday Community actions directly contribute to reforestation? The Atlassian Community can achieve this goal by liking a post, attending an ACE, sending your peers kudos, and so much more!
Help us plant more trees
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.