---
title: "List Scorecard Criteria"
method: GET
path: "/v1/scorecards/{id}/criteria"
tags: ["Scorecards"]
---

# List Scorecard Criteria

`GET /v1/scorecards/{id}/criteria`

Lists criteria, including passing service counts, belonging to a scorecard.

## Query parameters

- `page[size]` integer
- `page[number]` integer
- `filter` ScorecardCriteriaFilterParameters
  - `evaluation.passing_services_count` union — Filter by a numeric value.
    - number — Value strictly equals the given numeric value.
    - object
      - `eq` number, required — Value strictly equals the given numeric value.
    - object
      - `lt` number, required — Value is less than the given numeric value.
    - object
      - `lte` number, required — Value is less than or equal to the given numeric value.
    - object
      - `gt` number, required — Value is greater than the given numeric value.
    - object
      - `gte` number, required — Value is greater than or equal to the given numeric value.
- `sort` string — The `asc` suffix is optional as the default sort order is ascending. The `desc` suffix is used to specify a descending order. Multiple sort attributes may be provided via a comma separated list. JSONPath notation may be used to specify a sub-attribute (eg: 'foo.bar desc').

## Response `200`

A paginated list response for a collection of criteria belonging to a scorecard.

- object
  - `meta` PaginatedMeta, required — returns the pagination information
    - `page` PageMeta, required — Contains pagination query parameters and the total number of objects returned.
      - `number` number, required
      - `size` number, required
      - `total` number, required
  - `data` ScorecardCriteriaWithEvaluation[], required
    - `id` string, uuid, required
    - `name` string, nullable, required — Override display name for the criteria, for greater contextual clarity within a given scorecard.
    - `scorecard_id` string, uuid, required
    - `integration` string, nullable, required — The integration `name` when it provides the criteria template. Otherwise `null`.
    - `enabled` boolean, required — Whether the criteria is enabled for the given scorecard.
    - `template_name` string, required — Reference to the unique `name` of the criteria template.
    - `template_parameters` CriteriaParameters, nullable, required — Input parameters for the given criteria template. The available parameters, and its schema, are found on the criteria template definition via the `schema` property. Criteria template definitions are determined by the `/v1/criteria-templates` endpoint.
    - `section_name` string, nullable, required — Organizational section name for the criteria within the scorecard.
    - `created_at` string, date-time, required — An ISO-8601 timestamp representation of entity creation date.
    - `updated_at` string, date-time, required — An ISO-8601 timestamp representation of entity update date.
    - `evaluation` ScorecardCriteriaEvaluation, nullable, required
      - `passing_services_count` number, required — Number of targeted Services passing the criteria.

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found

---

[API](https://skmtc.net/kong/apis/konnect-api-go-sdk.md) · [All operations](https://skmtc.net/kong/apis/konnect-api-go-sdk/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/kong/konnect-api-go-sdk/versions/f920f418f552/schema)
