|
@@ -941,7 +941,21 @@ class APIMgr():
|
|
|
}
|
|
|
response = self.s.post(f"{cfg.target_host}/bigmember/decision/decInfo", headers=headers, json=json)
|
|
|
return response
|
|
|
-
|
|
|
+ #app新用户报表提交/跳过
|
|
|
+ def app_new_uer_sales(self):
|
|
|
+ headers = GSTORE['headers']
|
|
|
+ json = {
|
|
|
+ "area##business":"广州,北京",
|
|
|
+ "company":"剑鱼",
|
|
|
+ "department":"其他",
|
|
|
+ "model##business":"投标方",
|
|
|
+ "position":"职员",
|
|
|
+ "product##engineering":"交通设施,外工程",
|
|
|
+ "product##product":"化工用品包装材料,机电设备",
|
|
|
+ "product##seryice":"广告传媒,餐饮服务"
|
|
|
+ }
|
|
|
+ response = self.s.post(f"{cfg.target_host_app}/salesLeads/appNewUerSales", headers=headers, json=json)
|
|
|
+ return response
|
|
|
|
|
|
apimgr = APIMgr()
|
|
|
|