forked from adobe-rnd/aem-boilerplate-xwalk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0caaffb
commit e4a396a
Showing
1 changed file
with
26 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,32 @@ | ||
const accessTokenURL = "https://mobileapi.pchf.in/api/mobile/access-token"; | ||
const generateOTPURL = "https://mobileapi.pchf.in/api/website/generate-otp"; | ||
// V1 API URL | ||
// const accessTokenURL = "https://mobileapi.pchf.in/api/mobile/access-token"; | ||
|
||
// V2 API URL | ||
const accessTokenURL = "https://campaignapi.piramalfinance.com/api/account/access-token"; | ||
|
||
// V1 API URL | ||
// const generateOTPURL= "https://mobileapi.pchf.in/api/website/generate-otp"; | ||
|
||
// V2 API URL | ||
const generateOTPURL = "https://campaignapi.piramalfinance.com/api/website/generate-otp"; | ||
|
||
// V1 API URL | ||
// const resendOTPUrl = "https://mobileapi.pchf.in/api/website/resend-otp"; | ||
|
||
// V2 API URL | ||
const resendOTPUrl = "https://campaignapi.piramalfinance.com/api/website/resend-otp"; | ||
|
||
// V1 API URL | ||
// const verifyOTPURL = "https://mobileapi.pchf.in/api/website/verify-otp"; | ||
|
||
// V2 API URL | ||
const verifyOTPURL = "https://campaignapi.piramalfinance.com/api/website/verify-otp"; | ||
|
||
// V1 API URL | ||
const otpTokenURL = "https://apisit.piramal.com/oauth/v1/cc/accesstoken"; | ||
const smsURL = "https://apisit.piramal.com/communication/v2/karix/sms-query?ver=1.0&key=HbUcyrewWm27hdKRZyj2zA%3D%3D&encrypt=0&send=PIRCHF&dest=8007359739&text=Please%20use%20this%20one-time%20password%20for%20Piramal%20User%20Account%20Verification%3A%209106.%20DO%20NOT%20SHARE%20THIS%20WITH%20ANYONE%20and%20it%20is%20valid%20for%205%20minutes%20only"; | ||
const leadAPIURL = "https://mobileapi.pchf.in/api/website/insert-lead-data"; | ||
const verifyOTPURL = "https://mobileapi.pchf.in/api/website/verify-otp"; | ||
const resendOTPUrl = "https://mobileapi.pchf.in/api/website/resend-otp"; | ||
const getWhatAPIAuthURL = "https://piramal.allincall.in/campaign/external/get-auth-token/"; | ||
const getWhatAPIURL = "https://piramal.allincall.in/campaign/external/send-event-based-triggered-whatsapp-campaign/"; | ||
|
||
export { accessTokenURL, generateOTPURL, otpTokenURL, smsURL, leadAPIURL, verifyOTPURL, resendOTPUrl, getWhatAPIAuthURL, getWhatAPIURL }; |