logoutUserWithHttpInfo method
Logout
Revokes the refresh token, invalidating the session
Note: This method returns the HTTP Response.
Parameters:
- LogoutRequest logoutRequest (required):
Implementation
Future<Response> logoutUserWithHttpInfo(LogoutRequest logoutRequest,) async {
// ignore: prefer_const_declarations
final path = r'/api/v1/auth/logout';
// ignore: prefer_final_locals
Object? postBody = logoutRequest;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
const contentTypes = <String>['application/json'];
return apiClient.invokeAPI(
path,
'POST',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
);
}