refundPayment method

Future<Refund> refundPayment({
  1. required RefundPaymentRequest request,
  2. String? authToken,
})

Refunds a payment.

You can refund the entire payment amount or a portion of it. You can use this endpoint to refund a card payment or record a refund of a cash or external payment. For more information, see Refund Payment.

Implementation

Future<Refund> refundPayment({
  required RefundPaymentRequest 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/refunds");

  //print (endpoint.toString());

  var response = await
  http.post(endpoint, body:jsonEncode(request.toJson()), headers: headers);

  if (response.statusCode == 200) {
    print (jsonDecode(response.body));
    return SquareRefundResponse.fromJson(jsonDecode(response.body)).refund!;
  }
  else {
    print (response.body);
    throw PaymentException(statusCode: response.statusCode, message: SquareRefundResponse.fromJson(jsonDecode(response.body)).errors?[0].detail?.toString());
  }
}