Get filter queries for all boards

Hello,
I want a filter query that is used/configured to create the board.
I have tried the /rest/agile/1.0/board/{boardId}/configuration API but it gives for only 1 board at a time and also gives a URL for filter not jql and I want to get all boards filter queries in one call.

Does anyone know how we can get filter queries for all boards?

Hi @HarshModhiya,

There isn’t a way to retrieve all the configuration for all the boards with a single call, you’ll need to retrieve all the boards by using the GET /rest/agile/1.0/board endpoint and then iterate through them to retrieve their configuration with the method you shared.

Once you have retrieve the filter Id for each board, you can use the GET /rest/api/3/filter/{id} REST API endpoint (documented here) to retrieve the corresponding JQL.

Let me also share that the documentation for these endpoints is available in 2 different locations:

Hope this helps,
Caterina

1 Like