# List your personal access clients

Returns the personal access clients registered against the authenticated user. A
personal access client is the `client_id` half of the credentials the token endpoint
exchanges for an access token, and `id` here is that `client_id`.
The listing is scoped to the caller and to nobody else: it returns the clients that
caller registered, not every client in the account, and there is no parameter that
widens it. Clients that have been withdrawn are left out, so an entry disappearing from
this list means its credentials no longer work.
The response is a flat array. It carries no pagination envelope and takes no filter,
sort or page parameters, so the whole set comes back in one call however many there are.
No client secret is returned, here or anywhere else in the API. Ask Rosterfy for the
secret that goes with a `client_id` you hold.

Endpoint: GET /api/v2/oauth/clients
Version: 2.0.0
Security: default

## Header parameters:

  - `Rosterfy-Platform` (string)

## Response 200 fields (application/json):

  - `id` (integer)

  - `user_id` (integer)

  - `name` (string)

  - `provider` (string | null)

  - `redirect` (string)

  - `personal_access_client` (boolean)

  - `password_client` (boolean)

  - `revoked` (boolean)

  - `created_at` (string)

  - `updated_at` (string)

