searchTerminalRefund method
Future<TerminalRefundResponse>
searchTerminalRefund({
- required SearchTerminalRequest request,
- String? authToken,
Retrieves a filtered list of Interac Terminal refund requests created by the seller making the request.
Implementation
Future<TerminalRefundResponse> searchTerminalRefund({
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/refunds/search");
var response = await
http.post(endpoint, body: jsonEncode(request.toJson()), headers: headers);
if (response.statusCode == 200) {
//print (jsonDecode(response.body));
return TerminalRefundResponse.fromJson(jsonDecode(response.body));
}
else {
throw TerminalException(statusCode: response.statusCode, message: TerminalRefundResponse.fromJson(jsonDecode(response.body)).errors?[0].detail?.toString());
}
}