---
title: "Service: /oauth/members/{member}/clients/{client} [GET]"
source: https://dev.pageseeder.com/api/services/oauth-client-GET.html
description: "This GET service retrieves information about a specific OAuth client for a member. Members can only access their own clients, while administrators can access any client. Returns a client element with details including identifier, grant type, and token expiration settings."
last_updated: 2026-09-02T11:36:22+10:00
document_type: api_endpoint
operation_id: oauth-GET
resource_id: oauth
path_template: /oauth/members/{member}/clients/{client}
http_method: GET
api_category: oauth
implementation_version: 6.2004
api_since: 5.8900
deprecated_since: null
obsolete_since: null
api_support: experimental
cache_control: null
generated_at: 2026-09-02
tokens: ~313
---

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

## Description

Returns information about an [OAuth client](../../reference/glossary/oauth_client.md).

## Parameters

No parameters required.

## Permission

Members can only get their own OAuth clients.

Administrators can get any client.

## Response

This service returns a [\<client\> element](../elements/element_client.md).

```xml
<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>
```

## Error Handling

| HTTP code | Condition |
| --- | --- |
| 403 | The client is not owned by the member |
| 404 | Unable to find client |

