authRefreshCreateWithHttpInfo method
Takes a refresh type JSON web token and returns an access type JSON web token if the refresh token is valid.
Note: This method returns the HTTP Response
.
Parameters:
- TokenRefreshRequest tokenRefreshRequest (required):
Implementation
Future<Response> authRefreshCreateWithHttpInfo(
TokenRefreshRequest tokenRefreshRequest,
) async {
// ignore: prefer_const_declarations
final path = r'/api/auth/refresh/';
// ignore: prefer_final_locals
Object? postBody = tokenRefreshRequest;
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,
);
}