User API Keys
https://api.xata.io/user/keys
This endpoint allows interacting with the API keys for a given user.
Get the List of User API Keys
GEThttps://api.xata.io/user/keys
Retrieve a list of existing user API keys
Responses
type GetUserAPIKeys = {
keys: {
name: string;
createdAt: DateTime;
}[];
};
/**
* @format date-time
*/
type DateTime = string;
type GetUserAPIKeys = {
id?: string;
message: string;
};
{
"message": "invalid API key"
}
type GetUserAPIKeys = {
id?: string;
message: string;
};
type GetUserAPIKeys = void;