---
title: "Service: /oauth/members/{member}/clients [GET]"
source: https://dev.pageseeder.com/api/services/oauth-clients-GET.html
description: "GET endpoint that retrieves OAuth clients for a specified member. Returns a list of client applications with their configurations, identifiers, and metadata. Requires authentication as the member or administrator."
last_updated: 2026-09-02T11:36:20+10:00
document_type: api_endpoint
operation_id: oauth-GET
resource_id: oauth
path_template: /oauth/members/{member}/clients
http_method: GET
api_category: oauth
implementation_version: 6.1000
api_since: 5.8900
deprecated_since: null
obsolete_since: null
api_support: experimental
cache_control: null
generated_at: 2026-09-02
tokens: ~287
---

# /oauth/members/\{member\}/clients \[GET\]

## Description

Returns the list of OAuth [clients](../elements/element_client.md) for a member.

## Parameters

No parameters required.

## Permission

Only the member themselves, or an administrator, can invoke this service.

## Response

```xml

<clients>
  <client id="1"
          identifier="2aa92c5a79baf3fe"
          requires-consent="false"
          confidential="false"
          name="My app"
          grant-type="authorization_code"
          [created="2020-03-08T12:34:00+10:00"]
          [modified="2020-03-10T11:24:00+10:00"]
          [last-token="2020-05-10T10:28:00+10:00"]
          [app="Timesheet"]
          [webhook-secret="S0meP@ssw0d"]
          [redirect-uri="http://example.org/login"]
          [description="My example timesheet"]
          [client-uri="http://example.org"]
          [scope="openid profile email"]
          access-token-max-age="7200"
          refresh-token-max-age="0">
    <member id="45" ...>
      <fullname>John Smith</fullname>
    </member>
  </client>
  ...
</clients>  

```

## Error Handling

No specific errors expected for this service.

