Is there a way that I can see the asignee in trello in the task I migrated from jira to trello through smart list? I have team members that have taks in jira but also in trello and during the stand ups we just want to use one board. At the moment I cannot filter the tasks in the jira smart list in the trello board
Hi @Claudia Ardura, @Liam Do's suggestion is a solid path if you can budget a Power-Up, but since you specifically want a free route inside Atlassian tools, there is a way using Jira Cloud Automation (available on Free) plus a single call to the Trello REST API. No third party app needed.
The flow:
In the Send web request step:
https://api.trello.com/1/cards?key=YOUR_TRELLO_KEY&token=YOUR_TRELLO_TOKENPOSTapplication/json{
"idList": "YOUR_TRELLO_LIST_ID",
"name": "{{issue.key}} - {{issue.summary}}",
"desc": "Assigned to {{issue.assignee.displayName}} in Jira"
}
To get the Trello credentials and the list ID:
idList, open the Trello board in a browser and append .json to the URL. You will see the IDs of every list on that board.A couple of caveats worth knowing before you build this:
References:
Hope this helps. If you hit a wall configuring the rule, share the response body from the Automation logs and we can look at it.
Hi @Claudia Ardura ,
Unfortunately, Smart Lists in Trello have limited field support right now. This is because Jira and Trello have separate user systems — a Jira assignee doesn't automatically translate to a Trello board member.
I took a look and found a third-party Power-Up that might suit your case: Jira + Trello 2-Way Sync.
Hope it helps 🙌
Liam
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks @Liam Do - DevSamurai ! I was looking for something for free integrated in Altassian tools. Do you know if it is possible to create a trello card when a jira issue is assigned to someone?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Claudia Ardura, if you are looking for a no-cost method for this, using Automation as @Germán Morales _ Hiera suggests is the best way to go 😁
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.