From e3649c3d2d18f8f1d08725cce772e7ec94368d3d Mon Sep 17 00:00:00 2001 From: Ramon Gutierrez Date: Sun, 11 Aug 2024 15:26:48 +0800 Subject: [PATCH] Fix URL format of subscription fee endpoint #799 --- config/routes/apiv2.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/routes/apiv2.yaml b/config/routes/apiv2.yaml index 8fef53b4..ae9e6404 100644 --- a/config/routes/apiv2.yaml +++ b/config/routes/apiv2.yaml @@ -322,7 +322,7 @@ apiv2_static_content: # subscription apiv2_subscription_fee: - path: /apiv2/subscription/{vid}/fee + path: /apiv2/subscription/fee/{vid} controller: App\Controller\CustomerAppAPI\SubscriptionController::getRecurringFee methods: [GET]