cancelSubscription method
Schedules a CANCEL action to cancel an active subscription by setting the canceled_date field to the end of the active billing period and changing the subscription status from ACTIVE to CANCELED after this date.
Implementation
Future<SubscriptionResponse> cancelSubscription({
required int subscriptionId,
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/subscriptions/$subscriptionId/cancel");
//print (endpoint.toString());
var response = await
http.post(endpoint, headers: headers);
if (response.statusCode == 200) {
print (jsonDecode(response.body));
return SubscriptionResponse.fromJson(jsonDecode(response.body));
}
else {
print (response.body);
throw SubscriptionException(statusCode: response.statusCode, message: SubscriptionResponse.fromJson(jsonDecode(response.body)).errors?[0].detail?.toString());
}
}