---
title: "Get Monitoring Policies"
method: GET
path: "/monitoring_policies"
tags: ["Portfolio Monitoring"]
---

# Get Monitoring Policies

`GET /monitoring_policies`

Get all monitoring policies in the organization with pagination.
Policies are sorted by created_at in ascending order.

## Query parameters

- `limit` integer — Maximum number of records to return in a single page. Must be between 1 and 1000.
- `offset` integer, nullable — Number of records to skip from the beginning. Use 0 for the first page. Cannot be used with cursor.
- `cursor` string, nullable — Opaque pagination cursor token that identifies the position in the result set. Use the cursor from the previous response to get the next page. Cannot be used with offset.

## Response `200`

Response

- V1MonitoringPolicyListResponse[]
  - `id` string, uuid, required — The unique identifier of the portfolio item update.
  - `scope` 'portfolio' | 'group' | 'item', required — The scope of a portfolio monitoring policy.
  - `item_id` string, uuid, nullable, required — The unique identifier of the portfolio item, if any.
  - `group_id` string, uuid, nullable, required — The unique identifier of the portfolio group, if any.
  - `enabled` boolean, required — Whether the monitoring policy is enabled.
  - `cadence` 'daily' | 'weekly' | 'biweekly' | 'monthly' | 'quarterly' | 'biannually' | 'annually', required — The cadence of monitoring.
  - `last_run_at` string, date-time, nullable — When the monitoring policy was last executed.
  - `next_run_on` string, date-time, nullable — When the monitoring policy will be executed next.
  - `attributes` V1MonitorableAttributes[] — The attributes to monitor.
  - `url` string, required
  - `group_url` string, nullable, required
  - `item_url` string, nullable, required

## Other responses

- `422` — Validation Error

---

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