<< Click to Display Table of Contents >> Set Permissions (Unoverride Previous Permission Settings) |
![]() ![]() ![]() |
Request address |
http://ip:port/bi/api?action=setPermission&type=combine&token=xxxx |
|
Request message |
Request parameter |
required parameter:xmlData (required) Set permissions on resources: <?xml version="1.0" encoding="UTF-8"?> <info> <perm> <ref><type>db</type><path>dianxinggongnengyanshi/chart</path></ref> <rperm> <r><type>user</type><name>hunk3</name></r> <r><type>group</type><name>g11</name><parent></parent></r> <r><type>role</type><name>role1</name></r> </rperm> <wperm> <w><type>user</type><name>hunk3</name></w> </wperm> </perm> </info> Set permissions on actions: <?xml version="1.0" encoding="UTF-8"?> <info> <perm> <ref><type>Query</type></ref> <rperm> <r><type>user</type><name>u2</name></r> </rperm> </perm> </info> |
parametric description |
The parameter is node information: 1)ref (required): Node needs to set 2)ref-type (required): The type of node needs to set, including resource type and action type (see appendix). 3)path (optional): The node path to set. When selecting a resource type, ref-path must be filled in; when selecting an operation type, ref-path is not required. 4)rperm (optional): Read permission 5)perm-r-type (required when setting read permission): The type of this node can be read, including three types: user, group, role. 6)rperm-r-name (required when setting read permission): The name of the user, group, or role of this node that can be read. 7)rperm-r-parent (optional): The path to which this node's group can be read. 8)wperm(optional): Write permission 9)wperm-w-type (required when setting write permission): The type of this node can be edited, including three types: user, group, role. 10) wperm-w-name (required when setting write permission): The name of the user, group, or role of this node that can be edited. 11) wperm-w-parent (optional): The path to which this node's group can be edited. Explanation: 1) Rperm or wperm is selected at least, and each item may contain multiple child nodes. 2) Action cannot set write permission. 3) This method does not override the previous permission settings. |
|
Sample |
function setPermission() { var xml = getXml(); $.post("http://" + ip + ":" + port + "/" + project + "/api?action=setPermission&type=combine&token=xxxx ", {xmlData : xml}, function(result) { writeXml(result); }); } |
|
Response message |
Response result
|
1) Successful operation <?xml version="1.0" encoding="UTF-8"?> <results> <result> <level>1</level> <message>Operates successfully.</message> </result> </results> 2) Operation failed <?xml version="1.0" encoding="UTF-8"?> <results> <result> <level>6</level> <message>The Users, Groups or Roles ''admin1'' does not exist.</message> </result> </results> |
Result description |
The response result information is xml. direct parse. 1) Level return type, different values represent different return status, see appendix. 2) Message is the interface operation result information. |