searchTerminalCheckout method
Future<TerminalCheckoutResponse>
searchTerminalCheckout({
- required SearchTerminalRequest request,
- String? authToken,
Retrieves a filtered list of Terminal checkout requests created by the account making the request.
Implementation
Future<TerminalCheckoutResponse> searchTerminalCheckout({
required SearchTerminalRequest request,
String? authToken,
}) async {
authToken ??= authenticationService.getCachedToken()?.accessToken;
Map<String, String> headers = {
"Authorization": "Bearer ${authToken ?? ""}",
'Content-Type': 'application/json; charset=UTF-8',
'Accept': 'application/json',
};
Uri endpoint = Uri.https(
baseUrl, "/v2/terminals/checkouts/search");
var response = await
http.post(endpoint, body: jsonEncode(request.toJson()), headers: headers);
if (response.statusCode == 200) {
//print (jsonDecode(response.body));
return TerminalCheckoutResponse.fromJson(jsonDecode(response.body));
}
else {
throw TerminalException(statusCode: response.statusCode, message: TerminalCheckoutResponse.fromJson(jsonDecode(response.body)).errors?[0].detail?.toString());
}
}