added redeem api

This commit is contained in:
2023-06-13 09:01:02 +01:00
parent 12a56bdb05
commit 9adc7eaf1a
2 changed files with 47 additions and 9 deletions
+3 -3
View File
@@ -455,13 +455,13 @@ class usersService {
return this.postAuxEnd("/stepresetpass", reqData);
}
getCouponRedeem() {
getCouponRedeem(reqData) {
var postData = {
uuid: localStorage.getItem("uid"),
member_id: localStorage.getItem("member_id"),
sessionid: localStorage.getItem("session_token"),
page: 0,
limit: 100,
action: 85020,
...reqData
};
return this.postAuxEnd("/couponredeem", postData);
}