User OAuth Clients

https://api.xata.io/user/oauth/clients

this endpoint allows listing the clients the current user has authorized

Get the List of User OAuth Clients

GET
https://api.xata.io/user/oauth/clients

Retrieve the list of OAuth Clients that a user has authorized

Responses

type GetUserOAuthClients = {
    clients?: OAuthClientPublicDetails[];
};
 
type OAuthClientPublicDetails = {
    name?: string;
    description?: string;
    icon?: string;
    clientId: string;
};