List OAuth clients

Returns a list of OAuth clients.

GET
https://identity.krystal.io/api/v1/oauth_clients

If successful, this endpoint will return a 200 OK status.

Scopes

One of the following scopes are required to use this endpoint.

Returned Object

When the request is successful, you can expect an object matching the specification below to be returned.

{
    oauth_clients: [ OAuthClient {
        id: String
        auth_method: String
        client_credentials: Boolean
        description: String?
        first_party: Boolean
        name: String
        redirect_uris: [ String ]
        verified: Boolean
        webhook_url: String?
    } ]
}