diff --git a/libs/common/src/billing/services/billing-api.service.ts b/libs/common/src/billing/services/billing-api.service.ts index e3044a2293..b135b6f154 100644 --- a/libs/common/src/billing/services/billing-api.service.ts +++ b/libs/common/src/billing/services/billing-api.service.ts @@ -11,7 +11,7 @@ export class BillingApiService implements BillingApiServiceAbstraction { ): Promise { return this.apiService.send( "POST", - "/organizations/" + organizationId + "/cancel", + "/organizations/" + organizationId + "/churn", request, true, false, @@ -19,6 +19,6 @@ export class BillingApiService implements BillingApiServiceAbstraction { } cancelPremiumUserSubscription(request: SubscriptionCancellationRequest): Promise { - return this.apiService.send("POST", "/accounts/cancel-premium", request, true, false); + return this.apiService.send("POST", "/accounts/churn-premium", request, true, false); } }