MemberInterface.php
1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
namespace Lackoxygen\TiktokShop\Request\Member;
/**
* @note 会员中心API
*/
interface MemberInterface
{
/**
* 会员等级更新
* @link https://op.jinritemai.com/docs/api-docs/66/329
* @param array $params
* @return ResultSet
*/
public function memberBatchUpdate(array $params);
/**
* 【品牌会员专用】将openId转化成品牌会员商家的unionId
* @link https://op.jinritemai.com/docs/api-docs/66/1790
* @param array $params
* @return ResultSet
*/
public function memberBatchGetUnionIdByOpenIdList(array $params);
/**
* 加入会员接口
* @link https://op.jinritemai.com/docs/api-docs/66/1806
* @param array $params
* @return ResultSet
*/
public function memberJoinShopMemberWithMobileId(array $params);
/**
* 入会面板调用
* @link https://op.jinritemai.com/docs/api-docs/66/1805
* @param array $params
* @return ResultSet
*/
public function memberGetOuterShopMemberConf(array $params);
/**
* 电商会员卡面信息
* @link https://op.jinritemai.com/docs/api-docs/66/1803
* @param array $params
* @return ResultSet
*/
public function memberGetUserShopMemberCard(array $params);
/**
* 获取用户裂变引导入会人数
* @link https://op.jinritemai.com/docs/api-docs/66/1801
* @param array $params
* @return ResultSet
*/
public function memberGetJoinBonusCountForUser(array $params);
/**
* 【品牌会员店铺专用】根据店铺会员的openId获取品牌维度的用户身份标识unionId
* @link https://op.jinritemai.com/docs/api-docs/66/2136
* @param array $params
* @return ResultSet
*/
public function memberBatchGetHistoryMemberUnionId(array $params);
}