revokeTokenWithHttpInfo method

Future<Response> revokeTokenWithHttpInfo(
  1. String account,
  2. String token
)

Revoke a token

Permanently revokes a token. It cannot be undone. This action also immediately invalidates all sessions using the given token.

Note: This method returns the HTTP Response.

Parameters:

  • String account (required): The identifier (UUID) or slug of your Keygen account.

  • String token (required): The identifier (UUID) of the token to be revoked.

Implementation

Future<Response> revokeTokenWithHttpInfo(String account, String token,) async {
  // ignore: prefer_const_declarations
  final path = r'/accounts/{account}/tokens/{token}'
    .replaceAll('{account}', account)
    .replaceAll('{token}', token);

  // ignore: prefer_final_locals
  Object? postBody;

  final queryParams = <QueryParam>[];
  final headerParams = <String, String>{};
  final formParams = <String, String>{};

  const contentTypes = <String>[];


  return apiClient.invokeAPI(
    path,
    'DELETE',
    queryParams,
    postBody,
    headerParams,
    formParams,
    contentTypes.isEmpty ? null : contentTypes.first,
  );
}