---
title: "List risk scenario controls"
method: GET
path: "/risk-scenarios/{riskScenarioId}/controls"
tags: ["Risk Scenarios"]
---

# List risk scenario controls

`GET /risk-scenarios/{riskScenarioId}/controls`

List the controls associated with a risk scenario.

Each item is a `{ controlId, controlType }` relationship. `controlType` is
`TREATMENT_PLAN` for controls that are part of the risk's treatment plan,
and `EXISTING` for controls linked without a treatment-plan designation.

## Path parameters

- `riskScenarioId` string, required

## Query parameters

- `pageSize` integer — Controls the maximum number of items returned in one response from the API.
- `pageCursor` string — A marker or pointer, telling the API where to start fetching items for the subsequent page in a paginated dataset. Note that the requested page will not include the item that corresponds to this cursor but will start from the one immediately after this cursor.

## Response `200`

Ok

- PaginatedResponseRiskScenarioControl
  - `results` object, required
    - `data` RiskScenarioControl[], required
      - `controlId` string, required — The control's shorthand identifier (e.g. `"A.12.2.1"`) when it has one, falling back to the canonical Vanta control id (Mongo object id) otherwise.
      - `controlType` 'EXISTING' | 'TREATMENT_PLAN', required
    - `pageInfo` PageInfo, required — Provides information about the pagination of a dataset.
      - `endCursor` string, nullable, required — The cursor that points to the end of the current page, or null if there is no such cursor.
      - `hasNextPage` boolean, required — Indicates if there is another page after the current page.
      - `hasPreviousPage` boolean, required — Indicates if there is a page before the current page.
      - `startCursor` string, nullable, required — The cursor that points to the start of the current page, or null if there is no such cursor.

---

[API](https://skmtc.net/vanta/apis/build-integrations.md) · [All operations](https://skmtc.net/vanta/apis/build-integrations/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/vanta/build-integrations/revisions/6c1f7590538b/schema)
