{{webhookData.fields.Issue_date}}
In webhook data , it's return 2024/04/17.
I tried
Hi @Neville
thank you for your question. What type of field is Issue_date?
Is this also a custom field? Or is this webhook data from an external source?
If it is a valid date value, you should be able to populate another field with this issue regardless the date format.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Neville
I guess the problem then is the format. Jira needs to recognize the value as a date.
please try the following:
{{webhookData.fields.Issue_date.toDate()}}
or
{{webhookData.fields.Issue_date.toDate("yyyy/MM/dd")}}
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.