listOauth2Credentials method

Future<TListOauth2CredentialsResponse> listOauth2Credentials({
  1. required TListOauth2CredentialsBody input,
})

List all OAuth 2.0 credentials within an organization.

Sign the provided TListOauth2CredentialsBody with the client's stamp function and submit the request (POST /public/v1/query/list_oauth2_credentials).

See also: stampListOauth2Credentials.

Implementation

Future<TListOauth2CredentialsResponse> listOauth2Credentials({
  required TListOauth2CredentialsBody input,
}) async {
  return await request<TListOauth2CredentialsBody,
          TListOauth2CredentialsResponse>(
      "/public/v1/query/list_oauth2_credentials",
      input,
      (json) => TListOauth2CredentialsResponse.fromJson(json));
}