We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f64142d commit 28bc3faCopy full SHA for 28bc3fa
lib/Services/executor.js
@@ -44,6 +44,20 @@ class Executor extends Request {
44
return this.send('GET', path, { query });
45
}
46
47
+ /**
48
+ * @param {string} applicationId
49
+ * @param {string} userId
50
+ * @param {string[]} ruleIds
51
+ * @param {Object} query
52
+ */
53
+ searchRulesWithFilters(applicationId, userId, ruleIds, query) {
54
+ const path = `/rules/search`;
55
+ const payload = { rule_ids: ruleIds };
56
+ query = this.setTenant(applicationId, userId, query);
57
+
58
+ return this.send('POST', path, { payload, query });
59
+ }
60
61
/**
62
* @param {string} applicationId
63
* @param {string} userId
0 commit comments