G 35 Ss 0 MF
G 35 Ss 0 MF
// Login API is used for signing in to Micropayment system. Phone number is the
user ID.
const String login = '/auth/login';
// Login API if using loyaltyPoints
const String loginLoyalty = '/auth/loginLoyalty';
// Register API is used when customer want to create an account in Micropayment
System.
const String register = '/member/register';
// Register API if using loyaltyPoints
const String registerLoyalty = '/member/registerLoyalty';
// This API is used to get online balance stored on Micropayment system.
const String getBalance = '/member/getbalance';
// To get user’s profile from Micropayment.
const String getProfile = '/member/getprofile';
// To get history of transaction, either by online balance or point.
const String getHistory = '/transaction/gethistory';
// To send the detail of user profile to Micropayment.
const String updateProfile = '/member/updateprofile';
// Change password API is used before change password account in Micropayment
System via web or mobile.
const String changePasswordOtp = '/member/changepassword-otp';
// Change password API is used when customer want to change password account in
Micropayment System via web or mobile.
const String changePassword = '/member/changepassword';
// Inquiry Forgot Password
const String inquiryForgotPassword = '/member/forgotpassword-otp';
// Forgot Password API is used to replace the current password with new password
generated by system and send to user’s email.
const String forgotPassword = '/member/forgotpassword';
// Change email API is used when customer want to change email account in
Micropayment System via web or mobile.
const String changeEmail = '/member/changeemail';
// The API can be used to inquiry before changing MSISDN.
const String inquiryChangeMsisdn = '/member/changephone/request';
// The API can be used to change MSISDN.
const String changeMsisdn = '/member/changephone/process';
// Register API is used when customer want to create an account in Micropayment
System.
const String uploadKyc = '/member/kyc';
// Request OTP for KYC
const String otpKyc = '/member/kyc-otp';
//Register bank data for transfer
const String addBank = '/member/memberbank/addbank';
//get registered bank data for transfer
const String getBankRegistered = '/member/memberbank/banks';
//remove registered bank data
const String removeBank = '/member/memberbank/removebank';
//add card member to API
const String addCard = '/member/reqcard';
//This Api generate Payment Method Registered
const String getRegisteredPaymentMethod = '/member/memberbank/payment-method-list';
//This Api to remove registered payment method card
const String removeCard = '/member/memberbank/removecard';
//This API generate Bank list
const String getBankList = '/member/banks';
//The Region URL
const String getRegionList = '/member/getregion';
//The Job URL
const String getJobs = '/member/jobs';
//This API is for fetch adds/article
const String adds = '/member/adds';