send referral message implemented

This commit was merged in pull request #8.
This commit is contained in:
victorAnumudu
2023-04-23 22:42:12 +01:00
parent 1fbf3d2f90
commit 7e09ebf2fe
2 changed files with 137 additions and 27 deletions
+18
View File
@@ -151,6 +151,24 @@ class usersService {
return this.postAuxEnd("/couponhx", postData);
}
//END POINT CALL FOR REFERRAL HISTORY
getReferralHx(){
var postData = {
uid: localStorage.getItem("uid"),
member_id: localStorage.getItem("member_id"),
sessionid: localStorage.getItem("session_token"),
offset: 1,
limit :100,
action: 11064
};
return this.postAuxEnd("/refferhx", postData);
}
//END POINT CALL FOR SENDING REFERRAL MESSAGE
sendReferralMsg(postData){
return this.postAuxEnd("/sendreferral", postData);
}
getCouponRedeem(){
var postData = {
uuid: localStorage.getItem("uid"),