|
@@ -897,6 +897,12 @@ class APIMgr():
|
|
|
headers = GSTORE['headers']
|
|
|
response = self.s.post(f"{cfg.target_host}/leadGeneration/clickRecord", headers=headers, json={"type":"B"})
|
|
|
return response
|
|
|
+ #获取样例报告信息
|
|
|
+ def sample_report_information(self):
|
|
|
+ headers = GSTORE['headers']
|
|
|
+ response = self.s.post(f"{cfg.target_host}/salesLeads/sampleReport", headers=headers, json={})
|
|
|
+ return response
|
|
|
+
|
|
|
|
|
|
apimgr = APIMgr()
|
|
|
|