From 7812a69d8b2ff10d11cf386846d2c45257cd8d2b Mon Sep 17 00:00:00 2001 From: Albin Antony Date: Thu, 12 Oct 2023 18:59:42 +0530 Subject: [PATCH] Fix #236 Refresh token endpoint returns 404 --- src/httppathsv2/onboard_paths.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/httppathsv2/onboard_paths.go b/src/httppathsv2/onboard_paths.go index 3950dc6..3d7d840 100644 --- a/src/httppathsv2/onboard_paths.go +++ b/src/httppathsv2/onboard_paths.go @@ -9,7 +9,7 @@ const ValidatePhoneNumber = "/v2/onboard/validate/phone" const VerifyPhoneNumber = "/v2/onboard/verify/phone" const VerifyOtp = "/v2/onboard/verify/otp" -const GetToken = "/v2/onboard/token" +const GetToken = "/v2/onboard/token/refresh" const GetOrganizationByID = "/v2/onboard/organisation" const UpdateOrganization = "/v2/onboard/organisation"