getApiKeys method
Get details about API keys for a user.
Sign the provided TGetApiKeysBody with the client's stamp function and submit the request (POST /public/v1/query/get_api_keys).
See also: stampGetApiKeys.
Implementation
Future<TGetApiKeysResponse> getApiKeys({
required TGetApiKeysBody input,
}) async {
return await request<TGetApiKeysBody, TGetApiKeysResponse>(
"/public/v1/query/get_api_keys",
input,
(json) => TGetApiKeysResponse.fromJson(json));
}