Skip to main content
Planview Customer Success Center

Get the list of board filters

GET /io/board/:boardId/filter

Get a list of board filters for a board.

Example Request

curl -X GET \
  https://myaccount.leankit.com/io/board/943206946/filter \
  -H 'Authorization: Basic base64encodedauthhere'

Example Successful Response

200 Success

{
    "filters": [
        {
            "id": "956613516",
            "boardId": "621306390",
            "name": "sample filter",
            "filters": {
                "filterTagByOr": false,
                "parentCards": [
                    "682817489"
                ],
                "parentCardView": "textView",
                "cardTypes": [
                    "622011857",
                    "622011860"
                ],
                "classOfServices": [
                    "622033247",
                    -1
                ],
                "blocks": [],
                "priorities": [
                    2,
                    0
                ],
                "users": [
                    "478440842"
                ],
                "title": "oof",
                "startDate": 2,
                "finishDate": 4,
                "plannedStartRange": {
                    "start": "2020-01-07",
                    "end": "2020-01-09"
                },
                "plannedFinishRange": {
                    "start": "2020-01-09",
                    "end": "2020-01-11"
                },
                "tags": [
                    "one"
                ],
                "activity": {
                    "mode": "withActivity",
                    "days": 14
                },
                "customFields": {
                    "id": "82048732",
                    "type": "text",
                    "filterMethod": "contains",
                    "value": "search string"
                }
            },
            "isShared": true,
            "user": {
                "id": "478440842",
                "firstName": "First",
                "lastName": "Last",
                "avatar": "https://myaccount.leankit.com/avatar/show/478440842/?s=25"
            }
        },
        {
            "id": "956623925",
            "boardId": "621306390",
            "name": "Test filter",
            "filters": {
                "filterTagByOr": false,
                "parentCards": [
                    "682817489"
                ],
                "parentCardView": "textView",
                "cardTypes": [
                    "622011857",
                    "622011860"
                ],
                "classOfServices": [
                    "622033247",
                    -1
                ],
                "blocks": [
                  1,
                  0
                ],
                "priorities": [
                    2,
                    0
                ],
                "users": [
                    "478440842"
                ],
                "title": "oof",
                "startDate": 2,
                "finishDate": 4,
                "plannedStartRange": {
                    "start": "2020-01-07",
                    "end": "2020-01-09"
                },
                "plannedFinishRange": {
                    "start": "2020-01-09",
                    "end": "2020-01-11"
                },
                "tags": [
                    "one"
                ],
                "activity": {
                    "mode": "withActivity",
                    "days": 14
                }
            },
            "isShared": true,
            "user": {
                "id": "478440842",
                "firstName": "First",
                "lastName": "Last",
                "avatar": "https://myaccount.leankit.com/avatar/show/478440842/?s=25"
            }
        }
    ]
}



Updated 2020-10-19 @ 09:10 AM