verifyClientWithHttpInfo method
Verify a client
Verifies the client in the provided token
Note: This method returns the HTTP Response
.
Parameters:
- VerifyClientRequest verifyClientRequest: Parameters.
Implementation
Future<http.Response> verifyClientWithHttpInfo({
VerifyClientRequest? verifyClientRequest,
}) async {
// ignore: prefer_const_declarations
final path = r'/clients/verify';
// ignore: prefer_final_locals
Object? postBody = verifyClientRequest;
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,
);
}