Hi there
I want to use the Figma link in an issue as a trigger in a workflow. Or display the link in a confluence summary page, where I use the Insert JIRA Issue/Filter-Macro.
Is there any possibility of accessing the Figma link field through JQL? If yes whats the field name?
Thanks a lot
Reto
At present it might not be possible for JQL but with Jira API call's we can get that
I've been looking through the Jira API to figure out where Figma links are stored. Do you have an example you could share?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Figma Links are stored in issue level properties.
Call the below endpoint to get the properties which are linked to particular issue.
https://<DOMAIN>.atlassian.net/rest/api/3/issue/<ISSUE_KEY>/properties/
In response, find out the figma link key ( in my case it is
https://<DOMAIN>.atlassian.net/rest/api/3/issue/<ISSUE_KEY>/properties/com.figma.jira-add-on_figma-web-panel-jira-issue
You will see the Figma URL
Find the more details on API calls here
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.