---
title: "List OAuth clients"
method: GET
path: "/webhook_subscriptions/oauth_clients"
tags: ["Webhooks"]
---

# List OAuth clients

`GET /webhook_subscriptions/oauth_clients`

List all OAuth clients for webhook subscriptions. Maximum of 10 clients per account.

Requires admin or owner role permissions.

## Headers

- `Accept` string, required
- `Content-Type` 'application/json', required

## Response `200`

A list of OAuth clients

- object
  - `oauth_clients` OAuthClient[]
    - `id` string — The ID of the OAuth client
    - `type` 'oauth_client', required — The type of object being created
    - `name` string, required — A human-readable name for the OAuth client
    - `client_id` string, required — The OAuth client ID provided by the OAuth server
    - `scope` string, nullable — The OAuth scopes requested for this client
    - `token_url` string, uri, required — The OAuth token endpoint URL
    - `grant_type` 'client_credentials', required — The OAuth grant type (currently only client_credentials is supported)
    - `status` 'active' | 'error' — The current status of the OAuth client

## Other responses

- `401` — Caller did not supply credentials or did not provide the correct credentials. If you are using an API key, it may be invalid or your Authorization header may be malformed.
- `403` — Caller is not authorized to view the requested resource. While your authentication is valid, the authenticated user or token does not have permission to perform this action.

---

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