---
title: "Query workspace issues"
method: GET
path: "/workspaces/{workspace_id}/issues"
tags: ["Issue"]
---

# Query workspace issues

`GET /workspaces/{workspace_id}/issues`

## Path parameters

- `workspace_id` string, required

## Query parameters

- `open` boolean
- `linkedTo` string
- `limit` integer
- `cursor` string

## Response `200`

Issues matching the query

- IssueQueryResult
  - `issues` Issue[], required — All issues that matched the query
    - `id` string — Unique identifier for this issue within mabl
    - `open` boolean — Flag indicating that this issue is open; the definition of open depends on the specific issue tracker integration.
    - `committed` boolean — Flag indicating that this issue has been fully committed to the external issue tracker; any update from mabl will reset this flag to false.
    - `integration_id` string — ID of the integration associated with this issue
    - `schema_id` string — ID of the schema associated with this issue
    - `issue_tracker_invariant_id` string — The issue tracker's globally unique ID for this issue
    - `issue_tracker_variant_id` string — The issue tracker's ID for this issue which is either scoped to another entity and/or human-friendly
    - `issue_tracker_link` string — A link to this issue in any external issue tracking system
    - `issue_fields` object
    - `created_from_entity` object
      - `id` string — ID of the entity from which this issue was created, e.g. a test run ID
      - `type` 'plan' | 'test' | 'test_run' — The type of entity referenced by created_from_entity_id
    - `linked_entities` string[] — Generated union of all linked entity IDs
    - `linked_plans` string[] — Array of plan IDs that are linked to this issue
    - `linked_tests` string[] — Array of test IDs that are linked to this issue
    - `linked_test_runs` string[] — Array of test run IDs that are linked to this issue
    - `linked_test_run_ai_failure_summaries` object[] — Array of AI Generated Failure Summaries for linked test runs
    - `created_time` integer — Time at which the issue was created
    - `created_by_id` string — The ID of the user who created this issue
    - `last_updated_time` integer — time the issue was last updated
    - `last_updated_by_id` string — The ID of the user who last updated this issue
    - `workspace_id` string — Associated workspace
    - `deleted_on_jira` boolean — Flag indicating that this issue was deleted on the customer Jira instance
  - `cursor` string — Cursor used for pagination

## Other responses

- `400` — Invalid or missing parameter
- `401` — User not authenticated
- `403` — User not authorized
- `default` — Unknown error

---

[API](https://skmtc.net/mabl/apis/mabl-api.md) · [All operations](https://skmtc.net/mabl/apis/mabl-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mabl/mabl-api/revisions/d0fc0114da66/schema)
