authVerifyCreateWithHttpInfo method
Takes a token and indicates if it is valid. This view provides no information about a token's fitness for a particular use.
Note: This method returns the HTTP Response
.
Parameters:
- TokenVerify tokenVerify (required):
Implementation
Future<Response> authVerifyCreateWithHttpInfo(
TokenVerify tokenVerify,
) async {
// ignore: prefer_const_declarations
final path = r'/api/auth/verify/';
// ignore: prefer_final_locals
Object? postBody = tokenVerify;
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,
);
}