disableCard method
Disables the card, preventing any further updates or charges.
Disabling an already disabled card is allowed but has no effect.
Implementation
Future<Card> disableCard({
required String cardId,
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/cards/$cardId/disable");
//print (endpoint.toString());
var response = await
http.post(endpoint, headers: headers);
if (response.statusCode == 200) {
print (jsonDecode(response.body));
return CardResponse.fromJson(jsonDecode(response.body)).card!;
}
else {
print (response.body);
throw PaymentException(statusCode: response.statusCode, message: CardResponse.fromJson(jsonDecode(response.body)).errors?[0].detail?.toString());
}
}