---
title: "Paginated endpoint for listing a team's service schedules ordered by trigger time."
method: GET
path: "/schedules/services/paged"
tags: ["schedules"]
---

# Paginated endpoint for listing a team's service schedules ordered by trigger time.

`GET /schedules/services/paged`

Requires the privilege [`SERVICES_READ`](https://www.gremlin.com/docs/user-management/access-control/#privileges)

## Query parameters

- `pageSize` integer
- `pageToken` string
- `teamId` string, required

## Response `default`

default response

- PagedResponseServiceScheduleResponse
  - `pageNumber` integer
  - `pageSize` integer — The size of the page requested. If none was supplied this is a default value (depending on the endpoint). If the length of items is less than this number that means there are _no_ more pages to request. NOTE: if the length *is* equal there may or may not be additional pages to request, it is unknowable until they are requested
  - `pageToken` string — Supply this token on successive requests to retrieve the next page if there is one
  - `items` ServiceScheduleResponse[]
    - `teamId` string
    - `serviceId` string
    - `serviceName` string
    - `nextReliabilityTestId` string
    - `nextReliabilityTestName` string
    - `nextReliabilityDependencyId` string
    - `nextReliabilityDependencyName` string
    - `nextFailureFlagName` string
    - `nextTestTriggerSource` 'MANUAL' | 'RUN_ALL' | 'SCHEDULED' | 'RECURRING_SCHEDULE'
    - `nextTestTriggeredBy` string
    - `nextTriggerTime` string, date-time

## Other responses

- `401` — Authorization header missing or malformed. Please provide proper credentials in the authorization header.
- `403` — User requires privilege for target team: SERVICES_READ

---

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