Skip to main content
The cops jira filter commands let you inspect saved filters stored in Jira. Filters are commonly referenced by board configurations — use cops jira board config to find the filterId associated with a board.

cops jira filter get

Fetch the details of a saved Jira filter by its numeric ID.

Usage

cops jira filter get --filter <filterId> [flags]

Flags

--filter
string
required
Filter ID. You can find the filter ID in the URL of the filter in Jira, or via cops jira board config.
--output
string
default:"table"
Output format: table, json, or markdown.
--insecure
boolean
default:"false"
Disable TLS certificate validation. Use only with self-signed certificates in trusted networks.
--profile
string
Override the active config profile.

Output columns

id, name, owner, jql

Examples

cops jira filter get --filter 10045
id     name                    owner          jql
─────  ──────────────────────  ─────────────  ──────────────────────────────────────────────────────────────
10045  Platform Team Filter    Alice Example  project = PLT AND sprint in openSprints() ORDER BY priority ASC
Combine cops jira board config with cops jira filter get to understand exactly which issues a board is tracking:
# 1. Find the filter ID for a board
cops jira board config --board 14

# 2. Inspect the filter's JQL
cops jira filter get --filter 10045

cops jira board

Look up board IDs and retrieve the filter ID from board configuration.

cops jira issue search

Run a JQL query directly with cops jira issue search.

Build docs developers (and LLMs) love