You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I'm creating a subtask in an automation rule, in additional fields I specify:
{"fields": {
"assignee": {"emailaddress": {{CustomEmailField.asJsonString}} },
"description": {{CustomEmailField.asJsonString}}
}}
The description shows address@domain.com but the subtask remains unassigned. I tried the following variations without success:
"assignee": {{CustomEmailField.asJsonString}}
"assignee": {"username": {{CustomEmailField.asJsonString}} }
"assignee": {"name": {{CustomEmailField.asJsonString}} }
"assignee": {"key": {{CustomEmailField.asJsonString}} }
How do I assign an issue to a user via their email address within a jira automation?
Hi @Bryan Meyerovich ,
I don’t think this is possible. I believe Assignee field expects to get accountId of the user, e-mail is not enough. How does your process look like? Is it possible to use User picker custom field instead of Text field with the e-mail? Thank you.
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.
You can try to send request to REST API and find the user. Please look at this article, it is very similar to your problem.
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.