---
title: "List Provider Configurations"
method: GET
path: "/v1/provider-configurations"
tags: ["Provider Configurations API"]
---

# List Provider Configurations

`GET /v1/provider-configurations`

Use this endpoint to retrieve a paginated list of provider configurations. You can filter results by status or provider ID.

## Query parameters

- `status` 'active' | 'disabled'
- `providerId` string
- `limit` integer
- `cursor` string
- `sortBy` 'createdAt' | 'updatedAt' | 'name'
- `sortOrder` 'ASC' | 'DESC'

## Response `200`

Indicates that the request was successful and the response contains the requested data.

- ProviderConfigurationListOutput
  - `hasMore` boolean — Indicates whether more pages are available.
  - `items` ProviderConfigurationOutput[] — List of provider configurations in the current page.
    - `config` object — Provider-specific configuration.
    - `createdAt` string, date-time — Timestamp when the configuration was created.
    - `description` string — Human-readable description.
    - `id` string, uuid — Unique identifier of the configuration.
    - `metadata` object — Custom metadata.
    - `name` string — Name of the configuration.
    - `providerId` string — ID of the catalog provider.
    - `status` 'active' | 'disabled' — Current status: `active` or `disabled`.
    - `updatedAt` string, date-time — Timestamp of the last update.
  - `nextCursor` string — Cursor for the next page.

## Other responses

- `400` — Indicates that the request was malformed or contained invalid parameters.
- `500` — Indicates an unexpected internal error. If this persists, please contact support.

---

[API](https://skmtc.net/lerian/apis/identity-plugin.md) · [All operations](https://skmtc.net/lerian/apis/identity-plugin/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/lerian/identity-plugin/versions/25daba385532/schema)
