如何在 Splunk 中通过 REST API 更改动态创建的标签的权限?

How can i change the permissions of dynamically created Tags through REST API in Splunk?

我正在通过 REST 端点创建标签,但标签的权限是 private.To 使它们成为 public,是否有任何端点服务可用,我可以通过它更改标签的权限已经创造出来了。 目前我尝试将此 url 与 POST 请求一起使用,但它对我没有用 https://localhost:8089/servicesNS/admin/search/search/tags/tag_name/acl -d sharing="app" -d perms.write ="" -d perms.read=""

任何帮助是appreciated.I我目前正在使用 Splunk 版本 6。

终于得到答案: 您可以通过 REST API 在以下 url 和参数处发出 POST 请求来更新标签的权限:

https://localhost:8089/servicesNS/ks/search/saved/fvtags/tag_name/field%3Dvalue/acl -d owner="ks" -d sharing="app" -d perms.read="" -d perms.write=""