---
title: "List Incidents"
method: GET
path: "/api/v1/incidents/"
tags: ["incidents"]
---

# List Incidents

`GET /api/v1/incidents/`

List service incidents with pagination and filtering

## Query parameters

- `page` integer, nullable — The page number from which to start (0-based)
- `limit` integer — The maximum number of items to return
- `search_fields` IncidentProperties[] — String names of fields to search. Correspond by index to search field values
- `search_field_values` string[] — Values of fields to search. Correspond by index to search fields. Unless field name contains "list", an individual search field value cannot be a list
- `order_by` 'id' | 'description' | 'impact_category' | 'sessions_impacted' | 'markdown' | 'created_at' | 'updated_at' | 'organization_id' | 'sub_organization_id' | 'start_datetime' | 'end_datetime' | 'resolution_datetime' — Names of agent fields supported for filtering/sorting on list endpoint.
- `order_by_direction` 'asc' | 'desc' — The direction in which to order list results, either ascending or descending.
- `fields` IncidentProperties[], nullable — The fields to include in the response
- `start_datetime` string, nullable — The start datetime for filtering results
- `end_datetime` string, nullable — The end datetime for filtering results

## Response `200`

Successful Response

- ListResponseIncidentResponse
  - `items` IncidentResponse[], required — List of items returned from the query
    - `description` string, required — Description of the service incident
    - `start_datetime` string, date-time, required — Start time of the incident
    - `resolution_datetime` string, date-time, required — Resolution time of the incident
    - `impact_category` string, required — Category of the impact
    - `sessions_impacted` integer, required — Number of sessions impacted
    - `markdown` string, required — Detailed markdown description of the incident
    - `organization_id` integer, nullable — The ID of the organization
    - `sub_organization_id` integer, nullable — The ID of the sub-organization
    - `sub_organization` string, nullable — The name of the sub-organization (DEPRECATED)
    - `id` integer, required — The ID of the incident to update
    - `created_at` string, date-time, nullable — Creation time of the incident
    - `updated_at` string, date-time, nullable — Last update time of the incident
    - `last_updated_by` string, nullable, required — The email of the user who last updated the incident
  - `page` integer, required — The page number of the results (0-based)
  - `page_size` integer, required — The number of items returned per page
  - `total_pages` integer, nullable — The total number of pages of results given the indicated page size
  - `total_count` integer, nullable — The total number of items returned from the query

## Other responses

- `422` — Validation Error

---

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