2024-05-24 19:32:53 +05:30
|
|
|
class ApiEndpoints {
|
2024-07-12 09:14:15 +05:30
|
|
|
static const base = "https://tanami.betadelivery.com/";
|
2024-07-10 17:34:49 +05:30
|
|
|
static const baseurl =
|
|
|
|
|
"https://tanami.betadelivery.com/api/development/v1/"; //App Base url
|
|
|
|
|
|
2024-07-17 19:12:26 +05:30
|
|
|
//Country
|
2024-07-12 09:14:15 +05:30
|
|
|
static const getcountryurl = "${baseurl}country/getAllCountry";
|
2024-07-17 19:12:26 +05:30
|
|
|
|
|
|
|
|
//Register
|
2024-07-12 09:14:15 +05:30
|
|
|
static const requestotpapi = "${baseurl}auth/public/register";
|
2024-07-17 19:12:26 +05:30
|
|
|
static const registerrequestapi = "${baseurl}auth/public/email-register";
|
|
|
|
|
|
|
|
|
|
//OTP
|
2024-07-12 09:14:15 +05:30
|
|
|
static const requestresendotp = "${baseurl}auth/public/resend-otp";
|
|
|
|
|
static const verifyotp = "${baseurl}auth/public/verify-otp";
|
2024-07-17 19:12:26 +05:30
|
|
|
|
|
|
|
|
//Biometric
|
2024-07-12 19:46:59 +05:30
|
|
|
static const biometricUpdateapi = "${baseurl}auth/public/biometric-update";
|
2024-07-17 19:12:26 +05:30
|
|
|
|
|
|
|
|
//PIN
|
|
|
|
|
static const confirmpinapi = "${baseurl}auth/public/masterPin";
|
|
|
|
|
static const verifypinapi = "${baseurl}auth/public/verify-materPin";
|
|
|
|
|
|
|
|
|
|
//Login
|
|
|
|
|
static const loginapi = "${baseurl}auth/public/login";
|
|
|
|
|
|
|
|
|
|
//Forgot Password
|
|
|
|
|
static const forgotPasswordApi = "${baseurl}auth/public/forgot-password";
|
|
|
|
|
static const resetPasswordApi = "${baseurl}auth/public/reset-password";
|
2024-05-24 19:32:53 +05:30
|
|
|
}
|