updatePayment method
Future<Payment>
updatePayment({
- required String paymentId,
- required UpdatePaymentRequest request,
- String? authToken,
Updates a payment with the APPROVED status.
You can update the amount_money and tip_money using this endpoint.
Implementation
Future<Payment> updatePayment({
required String paymentId,
required UpdatePaymentRequest 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/payments/$paymentId");
//print (endpoint.toString());
var response = await
http.put(endpoint, body: jsonEncode(request.toJson()), headers: headers);
if (response.statusCode == 200) {
print (jsonDecode(response.body));
return SquarePaymentResponse.fromJson(jsonDecode(response.body)).payment!;
}
else {
print (response.body);
throw PaymentException(statusCode: response.statusCode, message: SquarePaymentResponse.fromJson(jsonDecode(response.body)).errors?[0].detail?.toString());
}
}