<< Click to Display Table of Contents >> 1.68 数据集报告授权情况查询 |
版本:V9.3
请求路径 |
http://ip:port/bi/api?action=getAssetPermission&token=xxx
|
|
请求消息 |
请求参数 |
请求参数:xmlData(必填) <?xml version="1.0" encoding="UTF-8"?> <info> <perm> <ref> <path>test2/test</path> <type>db</type> </ref> </perm> </info> |
参数描述 |
1)path(必填):数据集/报告路径。 2)type(必填):表示资源类型。 |
|
示例 |
function getAssetPermission() { var xml = getXml(); $.post("http://" + ip + ":" + port + "/" + project + "/api?action=getAssetPermissiont&token=xxxx", {xmlData : xml}, function(result) { writeXml(result); }); } |
|
响应消息 |
响应结果 |
<?xml version="1.0" encoding="UTF-8"?> <results> <wperm> <ref> <type>user</type> <path>ssas/test2_groupadmin</path> </ref> </wperm> <rperm> <ref> <type>user</type> <path>ssas/test2_groupadmin</path> </ref> </rperm> </results> |
结果描述 |
wperm(选填):写权限。 rperm(选填):读权限。 |
1.