List OAuth Clients

List the OAuth clients in this project. Each item has the same shape as `GET .../oauth_client/{oauth_client_id}`: identity fields, `grant_types`, `redirect_uris`, the token endpoint auth method and PKCE settings, and `created`/`modified`/`deleted` timestamps. `client_secret` is always `null` in list results. Three filters are applied that a caller cannot turn off: - only clients you have permission to view are returned, so two members of the same project may see different lists - Rightbrain's own internal clients are excluded; only clients created through this API appear - soft-deleted clients are excluded, so `deleted` is always `null` Results are newest first (descending `id`, which is time-ordered) and paginated with `cursor` and `page_limit`.

Authentication

AuthorizationBearer

API key or access token, sent as Authorization: Bearer <token>. The simplest option: create an API key in your dashboard under Settings, then paste it here.

OR
AuthorizationBearer

API key or access token, sent as Authorization: Bearer <token>. The simplest option: create an API key in your dashboard under Settings, then paste it here.

Path parameters

org_idstringRequiredformat: "uuid"
The unique identifier of the organization.
project_idstringRequiredformat: "uuid"
The unique identifier of the project.

Query parameters

page_limitinteger or nullOptional1-100Defaults to 100

The maximum number of items to return per page. Defaults to 100 if not specified.

cursorstring or nullOptionalformat: "uuid"

A cursor for pagination. Use the next_cursor value from the previous response to get the next page of results.

Response

OAuth clients retrieved
resultslist of objects
The list of items returned for the current page.
paginationobject or null
Contains pagination information for the result set.

Errors

400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error
404
Not Found Error
422
Unprocessable Entity Error
500
Internal Server Error