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
GEThttps://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;
};
type GetUserOAuthClients = {
id?: string;
message: string;
};
{
"message": "invalid API key"
}
type GetUserOAuthClients = {
id?: string;
message: string;
};
type GetUserOAuthClients = void;