|
@@ -1134,6 +1134,16 @@ class APIMgr():
|
|
|
response = s.get(f"{cfg.target_host}/entnicheNew/distribute/update", headers=hearders, json=json)
|
|
|
return response
|
|
|
|
|
|
+ """分发规则详情接口"""
|
|
|
+ def distribution_details(self):
|
|
|
+ hearders = GSTORE['headers']
|
|
|
+ s = GSTORE['s']
|
|
|
+ data= {
|
|
|
+ "identity": "ent"
|
|
|
+ }
|
|
|
+ response = s.get(f"{cfg.target_host_app}/entnicheNew/distribute/detail?id=67820b98e7364a57c3b7eaf5", headers=hearders, data=data)
|
|
|
+ return response
|
|
|
+
|
|
|
apimgr = APIMgr()
|
|
|
|
|
|
|