---
title: "Retrieves a paginated list of QuickLinks for a specific site with optional filtering, search, and sorting."
method: GET
path: "/Sites/{siteId}/Quicklinks"
tags: ["QuickLinks"]
---

# Retrieves a paginated list of QuickLinks for a specific site with optional filtering, search, and sorting.

`GET /Sites/{siteId}/Quicklinks`

The search parameter performs a case-insensitive partial match on Name and Slug fields.
If the search value is parseable as a long integer, it will also search by exact ID match.
Example: search="pause" will match QuickLinks with "pause" in their name or slug.
Example: search="5" will match QuickLink with ID=5 OR name/slug containing "5".
            
Multiple statuses/actionTypes can be specified to filter by any of the values:
Example: ?statuses=0&statuses=1 returns QuickLinks with status Disabled OR Enabled.
Example: ?actionTypes=0&actionTypes=2 returns QuickLinks with action type Resume OR Cancel.

## Path parameters

- `siteId` integer, required

## Query parameters

- `statuses` QPilotCoreModelsQuickLinkStatusType[]
- `actionTypes` QPilotCoreModelsQuickLinkActionType[]
- `search` string
- `page` integer
- `pageSize` integer
- `orderBy` string
- `order` string

## Response `200`

Returns the paginated list of QuickLinks

- QPilotCoreModelsPagedResultQuickLinkListItemDto
  - `items` QPilotCoreModelsDtoQuickLinksQuickLinkListItemDto[], nullable
    - `id` integer
    - `name` string, nullable
    - `slug` string, nullable
    - `actionType` 'Resume' | 'Pause' | 'ProcessNow' | 'Reactivate'
    - `status` 'Disabled' | 'Enabled' | 'Deleted'
    - `usageLimitType` 'SingleUse' | 'LimitedUse' | 'Unlimited'
    - `maxUses` integer, nullable
    - `currentUsageCount` integer
    - `requiresLogin` boolean
    - `createdUtc` string, date-time
    - `updatedUtc` string, date-time
    - `expiredUtc` string, date-time, nullable
    - `templateUrl` string, nullable
  - `totalCount` integer
  - `totalPages` integer

## Other responses

- `500` — Internal server error occurred

---

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