Is there is any way to get the selected columns after saving the filter view in Jira?

417 Views Asked by At

I am new to Jira and I created jira custom app using Atlassian connect express.     I used api from https://developer.atlassian.com/cloud/jira/platform/rest/v3/intro/ Atlassian components from https://atlassian.design/components/ In my app there is two filter dropdown is present, one is for columns and another is status of issues in jira.    For saving the filter view, I followed the below steps:- 

  • Create filter on save button. (/rest/api/3/filter.)
  • Search filter for get all created filter. (/rest/api/3/filter/search).

But the problem occur after create filter that only the status filter is saved properly, but columns are not saved in it. 

I tried to set columns after the filter is created but it not work for me.

  • Used set columns api. (PUT /rest/api/3/filter/{id}/columns) 
  • Also try to get columns. (GET /rest/api/3/filter/{id}/columns). 

Here I attached my github link please refer it. 

Please help me in this if any one has idea about this.

Thanks. 

2

There are 2 best solutions below

1
On

yes, you can do that:

you make a GET to https:///rest/api/latest/filter/<filterId>/columns

and the jira should response with something like:

[
    {
        "label": "Issue Type",
        "value": "issuetype"
    },
    {
        "label": "Priority",
        "value": "priority"
    },
    {
        "label": "Created",
        "value": "created"
    },
    {
        "label": "Status",
        "value": "status"
    },
    {
        "label": "Key",
        "value": "issuekey"
    },
    {
        "label": "Summary",
        "value": "summary"
    },
    {
        "label": "Creator",
        "value": "creator"
    },
    {
        "label": "Assignee",
        "value": "assignee"
    },
    {
        "label": "Story Points",
        "value": "customfield_124"
    }
]
1
On

The reason for the GET error could be that your filter doesn't have its own column config yet. If you create manually a filter and choose in columns the option "Filter" then the GET works properly. I'm still figuring out how to set that config with Jira API.